-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.95 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.95 KB
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.5.0",
"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": "c8 ava 'test/**/*.js'",
"posttest": "rimraf test/.tmp",
"update-test-snapshots": "ava --update-snapshots 'test/**/*.js'"
},
"bin": {
"ncm": "bin/ncm-cli.js",
"ncm-cli": "bin/ncm-cli.js"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"@octokit/rest": "^21.1.1",
"chalk": "^4.1.2",
"client-request": "^2.3.0",
"configstore": "^5.0.1",
"cross-spawn": "^7.0.6",
"debug": "^4.4.0",
"dependency-tree": "^11.1.1",
"events.once": "^2.0.2",
"minimist": "^1.2.8",
"p-defer": "^3.0.0",
"proxy-agent": "^6.5.0",
"proxy-from-env": "^1.1.0",
"rc": "^1.2.8",
"rimraf": "^6.0.1",
"semver": "^7.7.1",
"universal-module-tree": "^4.0.0",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"ava": "^5.3.1",
"c8": "^10.1.3",
"dependency-check": "^4.1.0",
"express": "^4.18.3",
"graphql": "^16.10.0",
"graphql-http": "^1.22.0",
"http-proxy": "^1.18.1",
"sinon": "^19.0.2",
"standard": "^17.1.0"
},
"standard": {
"ignore": [
"tap-snapshots"
]
}
}