-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 825 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 825 Bytes
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
{
"name": "@nodesource/ncm-ci",
"version": "9.0.6",
"license": "MIT",
"repository": "nodesource/ncm-ci",
"description": "CI tool for NCM 2.0",
"author": "NodeSource <npm@nodesource.com> (https://nodesource.com)",
"preferGlobal": true,
"contributors": [
"Julian Gruber <julian.gruber@nodesource.com> (https://github.com/juliangruber)"
],
"scripts": {
"start": "bin/ncm-ci.js",
"test": "standard && npm run test:deps",
"test:deps": "dependency-check . --quiet && dependency-check . --quiet --unused --no-dev"
},
"bin": {
"ncm-ci": "bin/ncm-ci.js"
},
"dependencies": {
"chalk": "^2.4.1",
"graphql-request": "^1.8.2",
"ncm-analyze-tree": "^3.0.0",
"node-fetch": "^2.2.0"
},
"devDependencies": {
"dependency-check": "^3.2.1",
"standard": "^12.0.1"
}
}