-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.91 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
{
"name": "node-core-utils",
"version": "2.1.1",
"description": "Utilities for Node.js core collaborators",
"type": "module",
"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": "mocha --timeout 60000 test/unit/*.test.js",
"test-all": "mocha --timeout 60000 test/**/*.test.js",
"coverage": "c8 --reporter=html --reporter=text --reporter=text-summary npm test",
"coverage-all": "c8 --reporter=lcov --reporter=text --reporter=text-summary npm run test-all",
"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": {
"branch-diff": "^1.10.5",
"chalk": "^5.0.1",
"changelog-maker": "^2.8.0",
"cheerio": "^1.0.0-rc.10",
"clipboardy": "^3.0.0",
"core-validate-commit": "^3.16.0",
"enquirer": "^2.3.6",
"execa": "^6.1.0",
"figures": "^4.0.1",
"form-data": "^4.0.0",
"ghauth": "^4.0.0",
"inquirer": "^8.2.4",
"listr2": "^4.0.5",
"lodash": "^4.17.21",
"log-symbols": "^5.1.0",
"node-fetch": "^3.2.4",
"ora": "^6.1.0",
"proxy-agent": "^5.0.0",
"replace-in-file": "^6.3.2",
"rimraf": "^3.0.2",
"which": "^2.0.2",
"yargs": "^17.5.0"
},
"devDependencies": {
"c8": "^7.11.2",
"eslint": "^8.15.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^4.1.0",
"mocha": "^10.0.0",
"sinon": "^14.0.0"
}
}