-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.01 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": "ipfs-dag-builder-vis",
"version": "0.0.0",
"description": "Visualise your DAG layouts and chunk replication",
"main": "src/index.js",
"dependencies": {
"@ipfs-shipyard/ignite-metrics": "^1.2.2",
"@ipld/dag-pb": "^2.1.15",
"cytoscape": "^3.16.0",
"cytoscape-dagre": "^2.3.0",
"ipfs-core": "^0.14.1",
"ipfs-css": "^1.3.0",
"ipfs-unixfs": "^6.0.6",
"parcel": "^1.12.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"tachyons": "^4.12.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"standard": "^16.0.4"
},
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build --public-url '.' src/index.html",
"lint": "standard"
},
"keywords": [
"DAG",
"Directed",
"Acyclic",
"Graph",
"Visualiser",
"Visualisation",
"IPFS",
"UnixFS"
],
"author": "Alan Shaw and Oli Evans",
"license": "MIT",
"browserslist": [
"last 2 Chrome versions"
],
"standard": {
"parser": "babel-eslint"
}
}