-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 3.12 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
{
"name": "fidelityhouse-smartcontracts",
"version": "1.0.0",
"description": "Smart Contracts for the FIH token issued by FidelityHouse International SA",
"main": "truffle-config.js",
"files": [
"contracts",
"test"
],
"scripts": {
"dev": "lite-server",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solium -d contracts",
"lint:sol:fix": "solium -d contracts --fix",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"flat:token": "truffle-flattener contracts/token/FidelityHouseToken.sol > dist/FidelityHouseToken.dist.sol",
"flat:timelock": "truffle-flattener contracts/token/FidelityHouseTimelock.sol > dist/FidelityHouseTimelock.dist.sol",
"flat:contributions": "truffle-flattener contracts/crowdsale/utils/Contributions.sol > dist/Contributions.dist.sol",
"flat:private": "truffle-flattener contracts/crowdsale/FidelityHousePrivateSale.sol > dist/FidelityHousePrivateSale.dist.sol",
"flat:presale": "truffle-flattener contracts/crowdsale/FidelityHousePresale.sol > dist/FidelityHousePresale.dist.sol",
"flat:ico": "truffle-flattener contracts/crowdsale/FidelityHouseICO.sol > dist/FidelityHouseICO.dist.sol",
"flat:vendor": "truffle-flattener contracts/distribution/FidelityHouseVendor.sol > dist/FidelityHouseVendor.dist.sol",
"flat:all": "npm run flat:token && npm run flat:timelock && npm run flat:contributions && npm run flat:private && npm run flat:presale && npm run flat:ico && npm run flat:vendor",
"console": "truffle develop",
"compile": "truffle compile --all",
"test": "scripts/test.sh",
"coverage": "scripts/coverage.sh",
"clean": "rm -rf coverage",
"profile": "npm run clean && npm run coverage && open coverage/index.html",
"analyze": "scripts/analyze.sh",
"version": "scripts/version.js"
},
"author": "BC1 - Blockchain Pioneers (https://www.bc1.tech)",
"contributors": [
{
"name": "Vittorio Minacori",
"url": "https://github.com/vittominacori"
}
],
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.0.0",
"coveralls": "^3.0.2",
"dotenv": "^6.2.0",
"eslint": "^5.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"ethereumjs-abi": "^0.6.6",
"ethereumjs-util": "^6.0.0",
"ethereumjs-wallet": "^0.6.3",
"ethjs-abi": "^0.2.1",
"ethlint": "^1.2.2",
"ganache-cli": "^6.3.0",
"lite-server": "^2.4.0",
"log4js": "^4.0.2",
"prompt-sync": "^4.1.6",
"solidity-coverage": "^0.5.11",
"surya": "^0.2.7",
"truffle": "^4.1.15",
"truffle-contract": "^3.0.7",
"truffle-hdwallet-provider": "^1.0.3",
"truffle-wallet-provider": "^0.0.5",
"web3": "0.20.6",
"web3-eth-abi": "^1.0.0-beta.41",
"web3-utils": "^1.0.0-beta.41"
},
"dependencies": {
"erc-payable-token": "1.0.1",
"eth-token-recover": "1.0.2",
"openzeppelin-solidity": "1.12.0"
}
}