forked from nodejs/citgm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.79 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
68
{
"name": "citgm",
"version": "1.2.12",
"description": "The Canary in the Goldmine",
"homepage": "http://nodejs.org",
"main": "bin/citgm",
"preferGlobal": true,
"bin": {
"citgm": "./bin/citgm.js",
"citgm-all": "./bin/citgm-all.js"
},
"scripts": {
"test": "npm run lint && npm run tap",
"tap": "TAP_TIMEOUT=90 tap 'test/**/**/test-*.js'",
"coverage": "TAP_TIMEOUT=90 nyc tap test/test-*.js",
"coverage-html": "TAP_TIMEOUT=90 nyc --reporter=html tap test/test-*.js && opener coverage/index.html",
"lint": "eslint bin/* lib/ test/",
"watch": "nodemon --ignore node_modules/ -e js,json --exec 'npm run tap'"
},
"author": "James M Snell <[email protected]> (http://jasnell.me)",
"repository": {
"type": "git",
"url": "https://github.com/nodejs/citgm"
},
"bugs": {
"url": "https://github.com/nodejs/citgm/issues",
"email": "[email protected]"
},
"man": [
"./man/citgm.1",
"./man/citgm-all.1"
],
"license": "MIT",
"dependencies": {
"async": "^1.4.0",
"chalk": "^1.1.3",
"columnify": "^1.5.1",
"commander": "^2.8.1",
"dotenv": "^2.0.0",
"lodash": "^4.12.0",
"mkdirp": "^0.5.1",
"node-uuid": "^1.4.3",
"normalize-git-url": "^3.0.2",
"npm-package-arg": "^4.1.1",
"osenv": "^0.1.3",
"read-package-json": "^2.0.4",
"request": "^2.70.0",
"rimraf": "^2.4.2",
"root-check": "^1.0.0",
"semver": "^5.0.1",
"strip-ansi": "^3.0.1",
"supports-color": "^3.1.0",
"tar": "^2.1.1",
"uid-number": "0.0.6",
"update-notifier": "^0.7.0",
"which": "^1.2.8",
"winston": "^2.2.0"
},
"devDependencies": {
"eslint": "^2.10.2",
"ncp": "^2.0.0",
"nodemon": "^1.9.2",
"nyc": "^6.4.4",
"opener": "^1.4.1",
"rewire": "^2.4.0",
"tap": "^5.7.0"
}
}