forked from nodejs/node-core-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.99 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
{
"name": "node-core-utils",
"version": "1.26.0",
"description": "Utilities for Node.js core collaborators",
"bin": {
"get-metadata": "./bin/get-metadata",
"git-node": "./bin/git-node",
"ncu-config": "./bin/ncu-config",
"ncu-team": "./bin/ncu-team",
"ncu-ci": "./bin/ncu-ci"
},
"scripts": {
"test": "npm run test-unit && npm run lint",
"test-unit": "mocha test/unit/*.test.js",
"test-all": "mocha test/**/*.test.js",
"coverage": "nyc --reporter=html --reporter=text --reporter=text-summary npm test",
"coverage-all": "nyc --reporter=lcov --reporter=text --reporter=text-summary npm run test-all",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"lint": "eslint . \"bin/*\" --cache",
"lint-fix": "eslint . \"bin/*\" --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.0",
"chalk": "^4.1.0",
"changelog-maker": "^2.5.0",
"cheerio": "^1.0.0-rc.5",
"clipboardy": "^2.3.0",
"core-validate-commit": "^3.13.1",
"execa": "^5.0.0",
"figures": "^3.2.0",
"form-data": "^3.0.0",
"fs-extra": "^9.0.1",
"ghauth": "^4.0.0",
"inquirer": "^7.3.3",
"listr": "^0.14.3",
"listr-input": "^0.2.1",
"lodash": "^4.17.20",
"node-fetch": "^2.6.1",
"ora": "^5.2.0",
"proxy-agent": "^4.0.0",
"replace-in-file": "^6.1.0",
"rimraf": "^3.0.2",
"yargs": "^16.2.0"
},
"devDependencies": {
"eslint": "^7.16.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"intelli-espower-loader": "^1.0.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"power-assert": "^1.6.1",
"sinon": "^9.2.2"
}
}