-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 717 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 717 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
31
32
{
"name": "npmgraphbuilder",
"version": "2.2.0",
"description": "Builds graph of npm dependencies from npm registry",
"main": "index.js",
"scripts": {
"test": "tap --branches=30 --lines=30 --statements=30 --functions=30 test/*.js"
},
"keywords": [
"npm",
"ngraph",
"graph",
"dependencies"
],
"author": "Andrei Kashcha",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anvaka/npmgraphbuilder"
},
"devDependencies": {
"tap": "~16.3.0",
"q": "~1.5.1",
"ngraph.graph": "0.0.2",
"ngraph.serialization": "0.0.3"
},
"dependencies": {
"bluebird": "^3.7.2",
"npm-package-arg": "^9.1.2",
"semver": "^7.3.8"
}
}