-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
32 lines (32 loc) · 1 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
{
"name": "dag-pizza-genesis",
"version": "1.0.0",
"description": "Setup DAG Pizza network from scratch",
"main": "index.js",
"dependencies": {
"wallet-genesis": "file:genesis"
},
"devDependencies": {},
"scripts": {
"init": "npm --prefix genesis run init",
"create_pizza": "bin/wallet.sh; npm --prefix genesis run create_pizza",
"create_noodles": "bin/constant.sh; npm --prefix genesis run create_noodles",
"pay_pizza": "npm --prefix genesis run pay_pizza",
"pay_noodles": "npm --prefix genesis run pay_noodles",
"deploy": "bin/deploy.sh",
"start": "bin/start.sh",
"clean": "bin/clean.sh",
"reset": "bin/reset.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DAGBPA/dag-pizza-genesis.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/DAGBPA/dag-pizza-genesis/issues"
},
"homepage": "https://github.com/DAGBPA/dag-pizza-genesis#readme"
}