-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathpackage.json
90 lines (90 loc) · 2.05 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": "9.1.1",
"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 \"test/**/test-*.js\"",
"test": "npm run lint && npm run tap"
},
"author": "James M Snell <jasnell@gmail.com> (http://jasnell.me)",
"repository": {
"type": "git",
"url": "https://github.com/nodejs/citgm"
},
"bugs": {
"url": "https://github.com/nodejs/citgm/issues",
"email": "jasnell@gmail.com"
},
"license": "MIT",
"dependencies": {
"async": "^3.2.5",
"bl": "^6.0.9",
"chalk": "^5.3.0",
"columnify": "^1.6.0",
"execa": "^8.0.1",
"lodash": "^4.17.21",
"normalize-git-url": "^3.0.2",
"npm-package-arg": "^11.0.1",
"npm-which": "^3.0.1",
"pnpm": "^8.13.1",
"read-package-json": "^7.0.0",
"root-check": "^2.0.0",
"semver": "^7.5.4",
"strip-ansi": "^7.1.0",
"supports-color": "^9.4.0",
"tar": "^6.2.0",
"uid-number": "0.0.6",
"undici": "^6.2.1",
"which": "^4.0.0",
"winston": "^3.11.0",
"xml-sanitizer": "^1.2.9",
"xmlbuilder": "^15.1.1",
"yargs": "^17.7.2",
"yarn": "^1.22.21"
},
"devDependencies": {
"ansi-regex": "^6.0.1",
"c8": "^8.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"prettier": "^3.1.1",
"string-to-stream": "^3.0.1",
"tap": "^16.3.8",
"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": "18.x || 20.x || 21.x"
}
}