-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.55 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": "skivvy",
"version": "1.0.10",
"description": "Modular task runner for reusable build systems",
"main": "index.js",
"preferGlobal": true,
"bin": {
"skivvy": "./bin/skivvy"
},
"directories": {
"bin": "bin",
"doc": "docs",
"lib": "lib",
"test": "test"
},
"files": [
"index.js",
"lib",
"bin"
],
"scripts": {
"prepublish": "npm test",
"test": "eslint index.js test lib bin && mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "https://github.com/skivvyjs/skivvy.git"
},
"author": "Tim Kendrick <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/skivvyjs/skivvy/issues"
},
"homepage": "https://github.com/skivvyjs/skivvy",
"devDependencies": {
"@skivvy/project-base": "^1.0.0",
"chai": "^3.2.0",
"chai-as-promised": "^5.0.0",
"eslint": "^1.3.1",
"mocha": "^2.3.0",
"mock-cli": "^0.1.0",
"mock-fs": "^3.1.0",
"mockery": "^1.4.0",
"rewire": "^2.3.3",
"sinon": "^1.16.1",
"sinon-chai": "^2.7.0"
},
"dependencies": {
"archy": "^1.0.0",
"chalk": "^1.0.0",
"commander": "^2.8.1",
"emitter-mixin": "0.0.3",
"end-of-stream": "^1.1.0",
"escape-regexp": "0.0.1",
"extend": "^2.0.1",
"glob": "^5.0.5",
"init-package-json": "^1.5.0",
"lodash.template": "^3.5.1",
"minimist": "^1.1.1",
"npm": "^2.10.0",
"pretty-ms": "^1.1.0",
"promise": "^7.0.1",
"promise-map-series": "^0.2.1",
"skivvy-utils": "^1.1.1",
"stream-consume": "^0.1.0"
}
}