forked from 1inch/chi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.5 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.5 KB
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
{
"name": "chi-token",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git@github.com:CryptoManiacsZone/chi.git"
},
"license": "MIT",
"devDependencies": {
"@openzeppelin/contracts": "^3.0.1",
"@openzeppelin/test-helpers": "^0.5.5",
"chai": "^4.2.0",
"coveralls": "^3.0.13",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eth-gas-reporter": "^0.2.17",
"ganache-cli": "^6.9.1",
"solc": "^0.6.8",
"solidity-coverage": "^0.7.5",
"solium": "^1.2.5",
"truffle": "^5.1.26",
"truffle-assertions": "^0.9.2",
"truffle-flattener": "^1.4.4"
},
"scripts": {
"test": "scripts/test.sh",
"coverage": "scripts/coverage.sh && cat coverage/lcov.info | coveralls",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solium -d .",
"lint:sol:fix": "solium -d . --fix",
"lint": "yarn run lint:js && yarn run lint:sol",
"lint:fix": "yarn run lint:js:fix && yarn run lint:sol:fix",
"dist": "truffle-flattener ./contracts/ChiToken.sol > ChiToken.full.sol && solcjs --bin --abi --optimize ChiToken.full.sol && mv ChiToken_full_sol_ChiToken.bin ChiToken.full.bin && mv ChiToken_full_sol_ChiToken.abi ChiToken.full.abi && rm *_sol_*"
},
"dependencies": {
"ethereum-tx-decoder": "^3.0.0",
"ethereumjs-tx": "^2.1.2"
}
}