forked from nodejs/node-core-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.96 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": "1.20.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 <joyeec9h3@gmail.com>",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:nodejs/node-core-utils.git"
},
"files": [
"lib/",
"bin/",
"components/"
],
"license": "MIT",
"dependencies": {
"branch-diff": "^1.8.1",
"chalk": "^3.0.0",
"changelog-maker": "^2.3.2",
"cheerio": "^1.0.0-rc.3",
"clipboardy": "^2.1.0",
"core-validate-commit": "^3.13.1",
"execa": "^3.4.0",
"figures": "^3.1.0",
"fs-extra": "^8.1.0",
"ghauth": "^4.0.0",
"inquirer": "^7.0.0",
"listr": "^0.14.3",
"listr-input": "^0.2.0",
"lodash": "^4.17.15",
"mkdirp": "^0.5.1",
"node-fetch": "^2.6.0",
"ora": "^4.0.3",
"replace-in-file": "^5.0.2",
"rimraf": "^3.0.0",
"yargs": "^15.0.2"
},
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"intelli-espower-loader": "^1.0.1",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"power-assert": "^1.6.1",
"sinon": "^7.5.0"
}
}