forked from basisjs/basisjs-tools-build
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.32 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.32 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "basisjs-tools-build",
"title": "Basis.js build tools",
"version": "1.8.3",
"homepage": "https://github.com/basisjs/basisjs-tools",
"description": "Build tools for basis.js framework",
"author": "Roman Dvornov <rdvornov@gmail.com>",
"license": "MIT",
"contributors": [
"Roman Dvornov <rdvornov@gmail.com>"
],
"repository": "basisjs/basisjs-tools-build",
"main": "./lib/index.js",
"engines": {
"node": ">=0.12.0"
},
"eslintConfig": {
"env": {
"node": true,
"mocha": true,
"es6": true
},
"rules": {
"no-undef": 2,
"no-unused-vars": [2, {"vars": "all", "args": "after-used"}]
}
},
"scripts": {
"test": "mocha",
"test-code": "jscs lib && eslint lib",
"test-all": "npm run test-code && npm test",
"travis": "npm run test-all"
},
"dependencies": {
"basisjs-tools-ast": "~1.4.0",
"basisjs-tools-config": "~1.1.0",
"chalk": "~1.1.1",
"clap": "~1.1.0",
"es6-promise-polyfill": "^1.2.0",
"fixed-width-string": "^1.0.0",
"mime": "~1.3.4",
"minimatch": "^3.0.2",
"resolve": "^1.1.7",
"seedrandom": "~2.4.2",
"uglify-js": "1.3.5"
},
"devDependencies": {
"eslint": "^2.2.0",
"jscs": "~2.11.0",
"mocha": "~2.3.4"
},
"files": [
"bin",
"lib",
"LICENSE",
"README.md"
]
}