-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1019 Bytes
/
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
{
"name": "substrate-state-visualizer",
"version": "0.1.0",
"description": "Visualize the substrate chain state",
"main": "index.js",
"bin": {
"create-wasm-app": ".bin/create-wasm-app.js"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lohann/substrate-state-visualizer.git"
},
"keywords": [
"webassembly",
"substrate",
"rust",
"merkle-radix-trie"
],
"author": "Lohann Paterno Coutinho Ferreira ([email protected])",
"bugs": {
"url": "https://github.com/Lohann/substrate-state-visualizer/issues"
},
"homepage": "https://github.com/Lohann/substrate-state-visualizer#substrate-state-visualizer",
"devDependencies": {
"copy-webpack-plugin": "^5.0.0",
"wasm-game-of-life": "file:../pkg",
"webpack": "^4.29.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"d3": "^7.2.1"
}
}