-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
70 lines (70 loc) · 2.08 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
{
"name": "@node-core/utils",
"version": "5.6.0",
"description": "Utilities for Node.js core collaborators",
"type": "module",
"engines": {
"node": "^18.18.0 || >=20.0.0"
},
"bin": {
"get-metadata": "./bin/get-metadata.js",
"git-node": "./bin/git-node.js",
"ncu-config": "./bin/ncu-config.js",
"ncu-team": "./bin/ncu-team.js",
"ncu-ci": "./bin/ncu-ci.js"
},
"scripts": {
"test": "npm run test-unit && npm run lint",
"test-unit": "node --test test/unit/**",
"test:reporters": "node --test --test-reporter=spec --test-reporter-destination=stdout --test-reporter=@reporters/github --test-reporter-destination=stdout test/unit/**",
"coverage": "c8 --reporter=html --reporter=text --reporter=text-summary npm test",
"coverage:ci": "c8 --reporter=lcov --reporter=text --reporter=text-summary npm run test:reporters",
"lint": "eslint . --cache",
"lint-fix": "eslint . --fix"
},
"author": "Joyee Cheung <[email protected]>",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:nodejs/node-core-utils.git"
},
"files": [
"lib/",
"bin/",
"components/"
],
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^6.0.1",
"@listr2/prompt-adapter-enquirer": "^2.0.11",
"@node-core/caritat": "^1.6.0",
"@pkgjs/nv": "^0.2.2",
"branch-diff": "^3.1.1",
"chalk": "^5.3.0",
"changelog-maker": "^4.1.1",
"cheerio": "^1.0.0",
"clipboardy": "^4.0.0",
"core-validate-commit": "^4.1.0",
"figures": "^6.1.0",
"ghauth": "^6.0.7",
"git-secure-tag": "^2.3.1",
"js-yaml": "^4.1.0",
"listr2": "^8.2.4",
"lodash": "^4.17.21",
"log-symbols": "^7.0.0",
"ora": "^8.1.0",
"replace-in-file": "^8.2.0",
"undici": "^6.19.8",
"which": "^4.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@reporters/github": "^1.7.1",
"c8": "^10.1.2",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"sinon": "^19.0.2"
}
}