-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
46 lines (46 loc) · 1.05 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
{
"name": "p2p-graph",
"description": "Real-time P2P network visualization with D3",
"version": "2.0.0",
"author": {
"name": "Feross Aboukhadijeh",
"email": "[email protected]",
"url": "https://feross.org"
},
"bugs": {
"url": "https://github.com/feross/p2p-graph/issues"
},
"dependencies": {
"d3": "^3.5.6",
"debug": "^4.1.1",
"inherits": "^2.0.3",
"throttleit": "^1.0.0"
},
"devDependencies": {
"babel-minify": "^0.5.1",
"browserify": "^16.1.0",
"ecstatic": "^4.1.2",
"standard": "*"
},
"homepage": "https://github.com/feross/p2p-graph",
"keywords": [
"d3",
"graph",
"network",
"p2p",
"peer-to-peer",
"real-time",
"visualization"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/feross/p2p-graph.git"
},
"scripts": {
"example": "browserify -s P2PGraph . > example/p2p-graph.js && ecstatic example --port 4000",
"size": "browserify -s P2PGraph . | minify | gzip | wc -c",
"test": "standard"
}
}