-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
49 lines (49 loc) · 1.28 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": "eip-spec",
"version": "0.1.0",
"description": "Security Token Standard",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "scripts/test.sh 2> /dev/null",
"compile": "node_modules/.bin/truffle compile --optimize-runs 200",
"ganache-cli": "node_modules/.bin/ganache-cli -i 15 --gasLimit 8000000",
"migrate:local": "node_modules/.bin/truffle migrate --network=development --reset --all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SecurityTokenStandard/EIP-Spec.git"
},
"keywords": [
"SecurityTokens",
"EIP",
"Securites",
"ERC1400",
"ERC1410",
"PFT",
"ERC20",
"ERC1066"
],
"author": "Polymath Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/SecurityTokenStandard/EIP-Spec/issues"
},
"homepage": "https://github.com/SecurityTokenStandard/EIP-Spec#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",
"openzeppelin-solidity": "^2.0.0"
},
"devDependencies": {
"bignumber.js": "^8.0.1",
"ganache-cli": "6.1.8",
"web3": "^1.0.0-beta.37",
"truffle": "4.1.14"
}
}