-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
76 lines (76 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
70
71
72
73
74
75
76
{
"name": "ncm-cli",
"version": "1.4.9",
"license": "Apache-2.0",
"description": "Command-line tool for NodeSource Certified Modules 2.0",
"author": "NodeSource <npm@nodesource.com> (https://nodesource.com)",
"contributors": [
"Michael Sterpka <michael.sterpka@nodesource.com> (https://github.com/mster)",
"Jeremiah Senkpiel <fishrock123@rocketmail.com> (https://github.com/Fishrock123)"
],
"preferGlobal": true,
"keywords": [
"ncm",
"ncm-cli",
"nodesource",
"certified",
"module",
"modules",
"risk",
"report",
"score"
],
"repository": "nodesource/ncm-cli",
"scripts": {
"check-deps": "tools/check-deps.sh",
"start": "bin/ncm-cli.js",
"lint": "standard --verbose",
"lint-fix": "standard --fix --verbose",
"pretest": "npm run -s lint",
"test": "npm run -s test-only",
"test-only": "tap -J --cov test/*.js",
"posttest": "rimraf test/.tmp",
"update-test-snapshots": "TAP_SNAPSHOT=1 tap -J test/*.js"
},
"bin": {
"ncm": "bin/ncm-cli.js",
"ncm-cli": "bin/ncm-cli.js"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/rest": "^17.11.2",
"chalk": "^4.1.2",
"client-request": "^2.3.0",
"configstore": "^5.0.1",
"cross-spawn": "^7.0.3",
"debug": "^4.3.4",
"events.once": "^2.0.2",
"minimist": "^1.2.7",
"p-defer": "^3.0.0",
"proxy-agent": "^5.0.0",
"proxy-from-env": "^1.1.0",
"rc": "^1.2.8",
"rimraf": "^3.0.2",
"semver": "^7.3.4",
"tape-harness": "github:juanarbol/tape-harness",
"universal-module-tree": "^4.0.0",
"update-notifier": "^6.0.2"
},
"devDependencies": {
"dependency-check": "^4.1.0",
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"graphql": "^15.8.0",
"http-proxy": "^1.18.1",
"sinon": "^9.2.4",
"standard": "^17.0.0",
"tap": "^16.3.4",
"tape-cluster": "juanarbol/tape-harness"
},
"standard": {
"ignore": [
"tap-snapshots"
]
}
}