forked from PolymathNetwork/polymath-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.97 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
{
"name": "polymath-core",
"version": "1.4.0",
"description": "Polymath Network Core Smart Contracts",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "scripts/test.sh 2> /dev/null",
"docs": "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 90000000",
"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": "sol-merger './contracts/*.sol' ./flat",
"ethereum-bridge": "node_modules/.bin/ethereum-bridge -H localhost:8545 -a 9 --dev",
"st20generator": "node demo/ST20Generator"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PolymathNetwork/polymath-core.git"
},
"keywords": [
"smart",
"contracts",
"solidity",
"token",
"securityToken",
"ERC20",
"ST20"
],
"author": "Polymath Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/PolymathNetwork/polymath-core/issues"
},
"homepage": "https://github.com/PolymathNetwork/polymath-core#readme",
"dependencies": {
"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",
"bignumber.js": "^5.0.0",
"chalk": "^2.4.1",
"coveralls": "^3.0.1",
"ethereumjs-testrpc": "^6.0.3",
"ethers": "^3.0.15",
"openzeppelin-solidity": "1.10.0",
"readline-sync": "^1.4.9",
"shelljs": "^0.8.2",
"solc": "^0.4.24",
"truffle-contract": "^3.0.4",
"truffle-hdwallet-provider-privkey": "^0.1.0",
"web3": "^1.0.0-beta.33"
},
"devDependencies": {
"@soldoc/soldoc": "^0.4.3",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"ethereum-bridge": "^0.6.1",
"fast-csv": "^2.4.1",
"ganache-cli": "^6.1.0",
"sol-merger": "^0.1.2",
"solidity-coverage": "^0.5.10",
"solidity-docgen": "^0.1.0",
"solium": "^1.1.6",
"truffle": "^4.1.11",
"truffle-wallet-provider": "0.0.5"
}
}