This repository has been archived by the owner on Jan 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 1.77 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
{
"name": "@0xcert/ethereum-crowdsale",
"version": "1.0.0",
"description": "0xcert protocol crowdsale contracts for Ethereum blockchain.",
"main": "truffle.js",
"private": true,
"directories": {
"contracts": "contracts",
"migrations": "migrations",
"test": "test"
},
"scripts": {
"clean": "rm -Rf ./build",
"compile": "truffle compile",
"console": "truffle console",
"flatten": "mkdir -p build && truffle-flattener contracts/**/*.sol >> build/bundle.sol",
"lint": "eslint './**/*.js?(x)'",
"migrate": "truffle migrate",
"networks": "truffle networks",
"postpublish": "npm run clean",
"prepublish": "npm run compile",
"test": "npm run clean && truffle test",
"coverage": "./node_modules/.bin/solidity-coverage; cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js --verbose"
},
"author": "0xcert",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/0xcert/ethereum-crowdsale.git"
},
"bugs": {
"url": "https://github.com/0xcert/etheethereum-crowdsalereum/issues"
},
"homepage": "https://github.com/0xcert/ethereum-crowdsale#readme",
"keywords": [
"ethereum",
"blockchain",
"eth",
"contract",
"contracts",
"smart",
"smart-contract",
"smart-contracts",
"token",
"tokens",
"erc",
"erc20",
"erc-20",
"standard",
"0xcert",
"protocol",
"zxc",
"crowdsale",
"ico"
],
"devDependencies": {
"coveralls": "^3.0.1",
"solidity-coverage": "^0.5.4",
"truffle": "^4.1.11",
"truffle-flattener": "^1.2.5",
"web3-utils": "^1.0.0-beta.34"
},
"dependencies": {
"@0xcert/ethereum-utils": "^1.0.0",
"@0xcert/ethereum-zxc": "^1.2.0",
"@0xcert/ethereum-xcert": "^1.6.0"
}
}