forked from nodejs/citgm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "citgm",
"version": "4.2.1",
"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"
},
"files": [
"bin",
"lib"
],
"scripts": {
"coverage": "npm run tap -- --coverage",
"coverage-html": "npm coverage -- --coverage-report=html",
"lint": "eslint bin/* lib/ test/ --cache",
"tap": "tap -J --timeout 480 \"test/**/test-*.js\"",
"test": "npm run lint && npm run tap",
"test-ci": "npm run lint && npm run coverage -- --coverage-report=lcov"
},
"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]"
},
"license": "MIT",
"dependencies": {
"async": "^2.6.2",
"bl": "^3.0.0",
"chalk": "^2.4.2",
"columnify": "^1.5.4",
"lodash": "^4.17.11",
"mkdirp": "^0.5.1",
"normalize-git-url": "^3.0.2",
"npm-package-arg": "^6.1.0",
"npm-which": "^3.0.1",
"osenv": "^0.1.5",
"read-package-json": "^2.0.13",
"request": "^2.88.0",
"rimraf": "^2.6.3",
"root-check": "^1.0.0",
"semver": "^6.0.0",
"strip-ansi": "^5.2.0",
"supports-color": "^6.1.0",
"tar": "^4.4.8",
"uid-number": "0.0.6",
"update-notifier": "^2.5.0",
"uuid": "^3.3.2",
"which": "^1.3.1",
"winston": "^3.2.1",
"xml-sanitizer": "^1.1.6",
"xmlbuilder": "^12.0.0",
"yargs": "^13.2.2",
"yarn": "^1.15.2"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"ncp": "^2.0.0",
"prettier": "1.17.0",
"proxyquire": "^2.1.0",
"rewire": "^4.0.1",
"string-to-stream": "^1.1.1",
"tap": "^12.6.1",
"tap-parser": "^7.0.0",
"xml2js": "^0.4.19"
},
"prettier": {
"arrowParens": "always",
"endOfLine": "lf",
"proseWrap": "always",
"singleQuote": true,
"overrides": [
{
"files": "LICENSE.md",
"options": {
"proseWrap": "never"
}
}
]
}
}