forked from rmariuzzo/Lang.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 888 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "lang.js",
"version": "1.1.14",
"description": "Laravel's Lang in JavaScript!",
"main": "src/lang.js",
"types": "index.d.ts",
"scripts": {
"test": "jasmine-node test/spec/",
"test:watch": "jasmine-node test/spec/ --color --autotest --watch src/",
"minify": "uglifyjs src/lang.js --output dist/lang.min.js --comments --verbose",
"jshint": "npm run jshint:src && npm run jshint:test",
"jshint:src": "jshint src/",
"jshint:test": "jshint test/",
"build": "npm run test && npm run minify"
},
"repository": {
"type": "git",
"url": "git://github.com/rmariuzzo/Lang.js.git"
},
"author": "rmariuzzo",
"license": "MIT",
"bugs": {
"url": "https://github.com/rmariuzzo/Lang.js/issues"
},
"devDependencies": {
"jasmine-node": "~1.14.3",
"jshint": "^2.8.0",
"rewire": "^2.5.2",
"uglify-js": "^2.4.24"
}
}