forked from 2046/chef-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.01 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
{
"name": "chef-cli",
"version": "1.2.6",
"description": "generator",
"bin": {
"chef": "./bin/chef"
},
"repository": {
"type": "git",
"url": "https://github.com/2046/chef-cli"
},
"author": "2046",
"license": "MIT",
"engines": {
"node": ">=6.5.0"
},
"bugs": {
"url": "https://github.com/2046/chef-cli/issues"
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs"
]
},
"homepage": "https://github.com/2046/chef-cli#readme",
"dependencies": {
"co": "^4.6.0",
"co-fs": "^1.2.0",
"ini": "^1.3.4",
"inquirer": "^1.2.3",
"ncp": "^2.0.0",
"ora": "^0.3.0",
"progress": "^1.1.8",
"request": "^2.79.0",
"rimraf": "^2.6.1",
"semver": "^5.3.0",
"text-table": "^0.2.0",
"unzip": "^0.1.11"
},
"scripts": {
"compile": "node_modules/.bin/babel src -d dist",
"prepublish": "npm run compile"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0"
}
}