forked from nodejs/citgm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.26 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
91
92
{
"name": "citgm",
"version": "6.0.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-html": "npm run tap -- --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 tap -- --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": "^3.1.0",
"bl": "^4.0.0",
"chalk": "^2.4.2",
"columnify": "^1.5.4",
"execa": "^3.2.0",
"lodash": "^4.17.15",
"make-promises-safe": "^5.1.0",
"mkdirp": "^0.5.1",
"normalize-git-url": "^3.0.2",
"npm-package-arg": "^6.1.1",
"npm-which": "^3.0.1",
"osenv": "^0.1.5",
"read-package-json": "^2.1.0",
"readable-stream": "^3.4.0",
"request": "^2.88.0",
"rimraf": "^3.0.0",
"root-check": "^1.0.0",
"semver": "^6.3.0",
"strip-ansi": "^5.2.0",
"supports-color": "^7.1.0",
"tar": "^5.0.5",
"uid-number": "0.0.6",
"update-notifier": "^3.0.1",
"uuid": "^3.3.3",
"which": "^2.0.1",
"winston": "^3.2.1",
"xml-sanitizer": "^1.1.6",
"xmlbuilder": "^13.0.2",
"yargs": "^14.2.0",
"yarn": "^1.19.1"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"fs-extra": "^8.1.0",
"prettier": "1.18.2",
"proxyquire": "^2.1.3",
"rewire": "^4.0.1",
"string-to-stream": "^3.0.1",
"tap": "^14.8.2",
"tap-parser": "^10.0.1",
"xml2js": "^0.4.22"
},
"prettier": {
"arrowParens": "always",
"endOfLine": "lf",
"proseWrap": "always",
"singleQuote": true,
"overrides": [
{
"files": "LICENSE.md",
"options": {
"proseWrap": "never"
}
}
]
}
}