-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
57 lines (57 loc) · 1.21 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
{
"name": "metal-cli",
"version": "4.4.0",
"description": "Command line tools for metal (e.g. build)",
"license": "BSD",
"repository": "metal/metal-cli",
"author": {
"name": "Maira Bello",
"email": "[email protected]"
},
"engines": {
"node": ">=0.12.0"
},
"bin": {
"metal": "./index.js"
},
"scripts": {
"lint": "jshint index.js",
"test": "mocha test/*.js --slow 1000 --timeout 5000"
},
"keywords": [
"cli",
"metal"
],
"dependencies": {
"chalk": "^1.1.1",
"glob-watcher": "^3.0.0",
"merge": "^1.2.0",
"metal-tools-build-amd": "^3.1.0",
"metal-tools-build-globals": "^2.0.0",
"metal-tools-build-jquery": "^2.0.0",
"metal-tools-soy": "^4.0.0",
"require-dir": "^0.3.0",
"stream-consume": "^0.1.0",
"vinyl-fs": "^2.2.1",
"yargs": "^3.30.0"
},
"devDependencies": {
"del": "^2.2.0",
"jshint": "^2.7.0",
"mocha": "^2.2.5",
"sinon": "^1.14.1"
},
"bundledDependencies": [
"chalk",
"glob-watcher",
"merge",
"metal-tools-build-amd",
"metal-tools-build-globals",
"metal-tools-build-jquery",
"metal-tools-soy",
"require-dir",
"stream-consume",
"vinyl-fs",
"yargs"
]
}