-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.38 KB
/
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
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
59
60
61
62
63
64
{
"name": "basisjs-tools-build",
"title": "Basis.js build tools",
"version": "1.12.2",
"homepage": "https://github.com/basisjs/basisjs-tools",
"description": "Build tools for basis.js framework",
"author": "Roman Dvornov <[email protected]>",
"license": "MIT",
"contributors": [
"Roman Dvornov <[email protected]>"
],
"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",
"lint": "jscs lib && eslint lib",
"lint-and-test": "npm run lint && npm test",
"travis": "npm run lint-and-test"
},
"dependencies": {
"basisjs-tools-ast": "~1.6.1",
"basisjs-tools-config": "~1.1.0",
"chalk": "^2.3.0",
"clap": "^1.2.3",
"es6-promise-polyfill": "^1.2.0",
"fixed-width-string": "^1.0.0",
"mime": "^2.0.5",
"minimatch": "^3.0.2",
"resolve": "^1.1.7",
"seedrandom": "~2.4.2",
"uglify-es": "^3.1.10"
},
"devDependencies": {
"eslint": "^2.2.0",
"jscs": "~2.11.0",
"mocha": "~2.3.4"
},
"files": [
"bin",
"lib",
"LICENSE",
"README.md"
]
}