-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.46 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
65
66
67
{
"name": "basisjs-tools-server",
"title": "Basis.js dev-server",
"version": "1.0.2",
"homepage": "https://github.com/basisjs/basisjs-tools-server",
"description": "Dev-server for basis.js framework",
"author": "Roman Dvornov <[email protected]>",
"license": "MIT",
"contributors": [
"Roman Dvornov <[email protected]>"
],
"repository": "basisjs/basisjs-tools-server",
"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": {
"codestyle": "jscs lib && eslint lib",
"test-all": "npm run test-code && npm test",
"travis": "npm run test-all"
},
"dependencies": {
"basisjs-tools-ast": "^1.6.2",
"basisjs-tools-build": "^1.4.0",
"basisjs-tools-config": "^1.1.0",
"chalk": "~1.1.3",
"clap": "~1.1.3",
"http-proxy": "0.10.4",
"mime": "1.3.4",
"minimatch": "~3.0.2",
"open-in-editor": "^2.1.0",
"pem": "^1.9.4",
"rempl": "1.0.0-alpha15",
"resolve": "1.1.7",
"socket.io": "~1.7.3",
"socket.io-client": "~1.7.3",
"update-notifier": "0.6.3"
},
"devDependencies": {
"eslint": "^2.2.0",
"jscs": "~2.11.0"
},
"files": [
"bin",
"lib",
"HISTORY.md",
"LICENSE",
"README.md"
]
}