-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 loc) · 1.57 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
{
"name": "registry-builder",
"description": "Open source library for generic registries and token curated registries smart contracts. You can use these contracts to deploy your own TCR or use them as an extension onto your personalized registry contract.",
"version": "0.1.0",
"homepage": "https://github.com/levelkdev/registry-builder",
"license": "MIT",
"files": [
"build",
"contracts",
"test",
"zos.json",
"zos.*.json"
],
"dependencies": {
"openzeppelin-eth": "^2.0.0",
"plcr-voting": "^0.1.2",
"zos-lib": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-bignumber": "^2.0.2",
"cross-env": "^5.1.4",
"dotenv": "6.1.0",
"ganache-cli": "6.1.8",
"lk-test-helpers": "0.1.7",
"moment": "^2.22.0",
"snazzy": "^7.1.1",
"standard": "^10.0.3",
"truffle": "4.1.14",
"truffle-hdwallet-provider": "^0.0.6",
"web3-utils": "1.0.0-beta.36"
},
"scripts": {
"cleanup": "rm -rf build",
"compile": "npm run cleanup && truffle compile --all",
"deploy": "npm run cleanup && truffle migrate --reset",
"deploy-rinkeby": "npm run cleanup && truffle migrate --reset --network rinkeby",
"test": "scripts/test.sh",
"test:coverage": "npm run solidity-coverage",
"lint": "standard --verbose | snazzy"
}
}