forked from PolymathNetwork/polymath-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 4 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "polymath-core",
"version": "3.0.0",
"description": "Polymath Network Core Smart Contracts",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "scripts/test.sh 2> /dev/null",
"clash-check": "node scripts/clashCheck.js",
"istr-check": "node scripts/ISTRCheck.js",
"gas": "scripts/gasUsage.sh",
"wintest": "scripts\\wintest.cmd",
"wincov": "scripts\\wincov.cmd",
"docs": "NO_COMPILE=false scripts/docs.sh",
"docs:nocompile": "NO_COMPILE=true scripts/docs.sh",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:sol": "solium -d .",
"lint:sol:fix": "solium -d . --fix",
"lint:all": "npm run lint && npm run lint:sol",
"lint:all:fix": "npm run lint:fix && npm run lint:sol:fix",
"compile": "truffle compile --optimize-runs 200",
"ganache-cli": "node_modules/.bin/ganache-cli -i 15 --gasLimit 8000000",
"migrate:local": "truffle migrate --network=development --reset --all",
"migrate:ropsten": "truffle migrate --network=ropsten --reset --all",
"migrate:kovan": "truffle migrate --network=kovan --reset --all",
"migrate:mainnet": "truffle migrate --network=mainnet",
"coverage": "scripts/coverage.sh",
"flatten-modules": "sol-merger './contracts/modules/*/*.sol' ./flat/modules",
"flatten-token": "sol-merger './contracts/tokens/*.sol' ./flat/tokens",
"flatten-mocks": "sol-merger './contracts/mocks/*.sol' ./flat/mocks",
"flatten-oracles": "sol-merger './contracts/oracles/*.sol' ./flat/oracles",
"flatten-proxies": "sol-merger './contracts/proxy/*.sol' ./flat/proxy",
"flatten-proxyFactories": "sol-merger './contracts/modules/STO/ProxyFactory/*.sol' ./flat/modules/STO/proxy",
"flatten": "sol-merger './contracts/*.sol' ./flat",
"flatten-all": "npm run flatten-modules && npm run flatten-token && npm run flatten-mocks && npm run flatten-oracles && npm run flatten-proxies && npm run flatten && npm run flatten-proxyFactories",
"ethereum-bridge": "node_modules/.bin/ethereum-bridge -H localhost:8545 -a 9 --dev",
"st20generator": "node demo/ST20Generator",
"pretty": "prettier --write --print-width 140 --tab-width 4 \"**/*.js\"",
"st-storage-layout-check": "node scripts/compareStorageLayout.js SecurityToken STGetter"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PolymathNetwork/polymath-core.git"
},
"keywords": [
"smart",
"contracts",
"solidity",
"token",
"securityToken",
"ERC20",
"ST20"
],
"author": "Polymath Inc",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/PolymathNetwork/polymath-core/issues"
},
"homepage": "https://github.com/PolymathNetwork/polymath-core#readme",
"dependencies": {
"dotenv": "^8.0.0",
"openzeppelin-solidity": "2.2.0",
"solc": "0.5.8",
"solidity-coverage": "^0.6.3",
"solidoc": "PolymathNetwork/solidoc",
"truffle": "^5.0.29",
"truffle-hdwallet-provider": "^1.0.15",
"web3": "^1.2.0",
"web3-provider-engine": "^15.0.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-preset-stage-3": "6.24.1",
"babel-register": "6.26.0",
"chalk": "^2.4.2",
"coveralls": "^3.0.5",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eth-gas-reporter": "^0.2.9",
"ethereum-bridge": "^0.6.2",
"ethereumjs-abi": "^0.6.7",
"fs": "0.0.2",
"ganache-cli": "6.5.0",
"mocha": "^6.2.0",
"mocha-junit-reporter": "^1.23.1",
"prettier": "^1.18.2",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"sol-merger": "^1.0.0",
"solium": "^1.2.4",
"table": "^5.4.4"
},
"greenkeeper": {
"ignore": [
"openzeppelin-solidity",
"web3",
"truffle-hdwallet-provider",
"ganache-cli"
]
}
}