forked from nodejs/citgm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.19 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
93
94
95
{
"name": "citgm",
"version": "8.1.2",
"description": "The Canary in the Goldmine",
"homepage": "https://nodejs.org",
"preferGlobal": true,
"type": "module",
"exports": false,
"bin": {
"citgm": "bin/citgm.js",
"citgm-all": "bin/citgm-all.js"
},
"files": [
"bin",
"lib"
],
"scripts": {
"lint": "eslint bin/* lib/ test/ --cache",
"tap": "c8 --reporter lcov tap --no-coverage -J \"test/**/test-*.js\"",
"test": "npm run lint && 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]"
},
"license": "MIT",
"dependencies": {
"async": "^3.2.2",
"bl": "^5.0.0",
"chalk": "^5.0.0",
"columnify": "^1.5.4",
"execa": "^6.0.0",
"lodash": "^4.17.21",
"make-promises-safe": "^5.1.0",
"normalize-git-url": "^3.0.2",
"npm-package-arg": "^8.1.5",
"npm-which": "^3.0.1",
"osenv": "^0.1.5",
"read-package-json": "^4.1.1",
"readable-stream": "^3.6.0",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"root-check": "^2.0.0",
"semver": "^7.3.5",
"strip-ansi": "^7.0.1",
"supports-color": "^9.2.1",
"tar": "^6.1.11",
"uid-number": "0.0.6",
"undici": "^5.5.1",
"uuid": "^8.3.2",
"which": "^2.0.2",
"winston": "^3.3.3",
"xml-sanitizer": "^1.1.11",
"xmlbuilder": "^15.1.1",
"yargs": "^17.3.0",
"yarn": "^1.22.17"
},
"devDependencies": {
"c8": "^7.10.0",
"eslint": "^8.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^10.0.0",
"prettier": "^2.5.1",
"string-to-stream": "^3.0.1",
"tap": "^16.2.0",
"tap-parser": "^11.0.1",
"xml2js": "^0.6.2"
},
"prettier": {
"proseWrap": "always",
"singleQuote": true,
"trailingComma": "none",
"overrides": [
{
"files": "LICENSE.md",
"options": {
"proseWrap": "never"
}
}
]
},
"tap": {
"timeout": 480,
"check-coverage": false
},
"engines": {
"node": "14.x || 16.x || 18.x"
}
}