-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.71 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@smartcharging/scn-registry",
"version": "1.0.0",
"description": "Share & Charge registry smart contracts",
"directories": {
"test": "test"
},
"publishConfig": {
"access": "public"
},
"main": "dist/registry.js",
"bin": {
"scn-registry": "dist/index.js"
},
"files": [
"*.json",
"dist/*"
],
"scripts": {
"build": "tsc",
"compile": "truffle compile",
"test": "rm -Rf build && truffle test",
"lint": "solium -d contracts",
"cover": "solidity-coverage",
"migrate": "truffle migrate",
"migrate-docker": "truffle migrate --network=docker",
"ganache": "ganache-cli -m \"candy maple cake sugar pudding cream honey rich smooth crumble sweet treat\" --port 8544 --accounts 20 --networkId=9 --gasLimit=10000000",
"publish-dev": "truffle migrate && node bin/publish.js"
},
"repository": {
"type": "git",
"url": "git+https://bitbucket.org:smartcharging/registry.git"
},
"author": "Share & Charge foundation",
"license": "Apache-2.0",
"bugs": {
"url": "https://bitbucket.org/smartcharging/registry/issues?status=new&status=open"
},
"homepage": "https://bitbucket.org/smartcharging/registry",
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/yargs": "^15.0.3",
"ganache-cli": "^6.9.1",
"mkdirp": "^0.5.1",
"openzeppelin-solidity": "^2.5.0",
"solium": "^1.2.5",
"truffle": "^5.1.12",
"truffle-contract": "^4.0.31",
"truffle-flattener": "^1.4.2",
"truffle-hdwallet-provider": "^1.0.17",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"dependencies": {
"bignumber.js": "^8.0.2",
"ethers": "^4.0.44",
"web3-utils": "^1.2.6",
"yargs": "^15.1.0"
}
}