-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.19 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
{
"name": "kredits-contracts",
"version": "2.4.0",
"description": "Ethereum smart contracts for Kosmos Kredits",
"repository": "https://github.com/67P/kredits-contracts",
"main": "index.js",
"bin": {
"kredits-deploy": "scripts/deploy.js",
"kredits-seed": "scripts/seed.js",
"kredits-console": "scripts/console.js",
"kredits-inspect": "scripts/inspect.js",
"kredits-parity": "scripts/parity.sh",
"kredits-watch": "scripts/watch.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "node scripts/deploy.js",
"deploy-local": "node scripts/deploy.js",
"deploy-testnet": "node scripts/deploy.js --network test",
"deploy-mainnet": "node scripts/deploy.js --network main",
"parity": "scripts/parity.sh",
"console": "node scripts/console.js",
"inspect": "node scripts/inspect.js",
"package": "scripts/package.sh",
"watch": "scripts/watch.js",
"seed": "node scripts/seed.js"
},
"author": "Michael Bumann",
"license": "MIT",
"devDependencies": {
"commander": "^2.9.0",
"glob": "*",
"web3": "*",
"async": "*"
},
"dependencies": {
"base-58": "0.0.1",
"solc": "0.4.11"
}
}