forked from anvaka/npmgraphbuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 660 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 660 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.0.0",
"description": "Builds graph of npm dependencies from npm registry",
"main": "index.js",
"scripts": {
"test": "tap test/*.js"
},
"keywords": [
"npm",
"ngraph",
"graph",
"dependencies"
],
"author": "Andrei Kashcha",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anvaka/npmgraphbuilder"
},
"devDependencies": {
"tap": "~0.4.8",
"q": "~1.0.0",
"ngraph.graph": "0.0.2",
"ngraph.serialization": "0.0.3"
},
"dependencies": {
"bluebird": "^3.4.1",
"npm-package-arg": "^4.2.0",
"semver": "^5.2.0"
}
}