-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 987 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
32
33
34
35
36
37
38
39
40
{
"name": "gc-cli",
"version": "0.0.0",
"scripts": {
"lint": "eslint .",
"build": "npm run lint && npm run test",
"test": "cd global-compiler; npm t; cd ..; cd gc-cli; npm t"
},
"repository": {
"type": "git",
"url": "https://github.com/caplin/gc-cli.git"
},
"dependencies": {
"babel-preset-node6": "^11.0.0",
"babel-register": "^6.9.0",
"capitalize": "^1.0.0",
"check-node-version": "^1.1.1",
"elementtree": "^0.1.6",
"glob": "^7.0.3",
"immutable": "^3.0.3",
"js-formatter": "git://github.com/briandipalma/js-formatter",
"js-yaml": "^3.6.1",
"minimist": "^1.1.0",
"recast": "^0.11.5",
"through2": "^2.0.1",
"vinyl-fs": "^2.4.3",
"winston": "^2.2.0"
},
"devDependencies": {
"@briandipalma/eslint-config-bdp": "^8.3.0",
"del": "^2.2.0",
"eslint": "^2.10.2",
"mocha": "^2.1.0"
},
"engines": {
"node": ">=6"
},
"preferGlobal": true,
"bin": "./gc-cli/bin/gc-cli.js"
}