-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
59 lines (59 loc) · 1.23 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
{
"name": "basisjs-tools",
"title": "Basis.js developer tools",
"version": "1.12.2",
"homepage": "https://github.com/basisjs/basisjs-tools",
"description": "Developer tools for basis.js framework",
"author": "Roman Dvornov <[email protected]>",
"license": "MIT",
"contributors": [
"Roman Dvornov <[email protected]>",
"Vladimir Ratsev <[email protected]>"
],
"repository": "basisjs/basisjs-tools",
"main": "./lib/api",
"bin": {
"basis": "./bin/basis"
},
"preferGlobal": true,
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"basisjs-tools-config": "^1.1.0",
"basisjs-tools-ast": "^1.6.0",
"basisjs-tools-build": "^1.11.3",
"basisjs-tools-server": "^1.0.1",
"clap": "~1.2.3",
"update-notifier": "0.6.3",
"chalk": "~1.1.3",
"win-spawn": "2.0.0",
"exit": "0.1.2"
},
"devDependencies": {},
"scripts": {},
"eslintConfig": {
"env": {
"node": true,
"mocha": true,
"es6": true
},
"rules": {
"no-undef": 2,
"no-unused-vars": [
2,
{
"vars": "all",
"args": "after-used"
}
]
}
},
"files": [
"bin",
"lib",
"HISTORY.md",
"LICENSE",
"README.md"
]
}