forked from nodejs/node-core-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.65 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
{
"name": "node-core-utils",
"version": "1.6.1",
"description": "Utilities for Node.js core collaborators",
"main": "./bin/metadata.js",
"bin": {
"get-metadata": "./bin/get_metadata.js"
},
"scripts": {
"test": "npm run test-unit && npm run lint",
"test-unit": "mocha --require intelli-espower-loader test/unit/*.test.js --exit",
"test-all": "mocha --require intelli-espower-loader test/**/*.test.js --exit",
"lint-fix": "eslint . --fix",
"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",
"lint": "eslint . --cache",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov"
},
"author": "Joyee Cheung <[email protected]>",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:joyeecheung/node-core-utils.git"
},
"files": [
"lib/",
"bin/",
"queries/",
"steps/"
],
"license": "MIT",
"dependencies": {
"chalk": "^2.2.0",
"ghauth": "^3.2.1",
"jsdom": "^11.3.0",
"pino": "^4.9.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"yargs": "^10.0.3"
},
"devDependencies": {
"codecov": "^3.0.0",
"eslint": "^4.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"intelli-espower-loader": "^1.0.1",
"mkdirp": "^0.5.1",
"mocha": "^4.0.1",
"nyc": "^11.2.1",
"power-assert": "^1.4.4",
"rimraf": "^2.6.2",
"sinon": "^4.0.2"
}
}