-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 3.15 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
{
"name": "colony-token",
"version": "0.0.1",
"description": "Colony Token and vesting contracts",
"author": "",
"directories": {
"test": "test"
},
"scripts": {
"solhint-staged": "bash ./scripts/solhint.sh",
"eslint-staged": "bash ./scripts/eslint.sh",
"eslint": "eslint .",
"solhint": "solhint ./contracts/**/*.sol",
"clean:contracts": "rimraf ./build/contracts/*",
"provision:multisig:contract": "truffle compile && bash ./scripts/provision-multisig-contract.sh",
"start:blockchain:client": "bash ./scripts/start-blockchain-client.sh",
"stop:blockchain:client": "bash ./scripts/stop-blockchain-client.sh",
"test:contracts": "npm run start:blockchain:client & truffle migrate --reset --compile-all && truffle test --network development",
"test:contracts:gasCosts": "npm run start:blockchain:client & truffle migrate --reset --compile-all && truffle test gasCosts/gasCosts.js --network development",
"test:contracts:coverage": "SOLIDITY_COVERAGE=1 truffle run coverage --network coverage --temp build --file='./test/*'",
"pretest:contracts": "sed -ie \"s/eth-gas-reporter/mocha-circleci-reporter/g\" ./truffle.js && rimraf ./truffle.jse",
"pretest:contracts:gasCosts": "sed -ie \"s/mocha-circleci-reporter/eth-gas-reporter/g\" ./truffle.js && rimraf ./truffle.jse",
"pretest:contracts:coverage": "sed -ie \"s/eth-gas-reporter/mocha-circleci-reporter/g\" ./truffle.js && rimraf ./truffle.jse",
"posttest:contracts": "npm run stop:blockchain:client",
"posttest:contracts:gasCosts": "npm run stop:blockchain:client",
"flatten:contracts": "steamroller contracts/Token.sol > flattened/TokenFlattened.sol && steamroller contracts/TokenAuthority.sol > flattened/TokenAuthorityFlattened.sol && steamroller contracts/Vesting.sol > flattened/VestingFlattened.sol"
},
"pre-commit": [
"eslint-staged",
"solhint-staged"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JoinColony/colonyToken.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/JoinColony/colonyToken/issues"
},
"homepage": "https://github.com/JoinColony/colonyToken#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/polyfill": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/register": "^7.4.0",
"@colony/eslint-config-colony": "^9.0.2",
"babel-eslint": "^10.0.1",
"bn-chai": "^1.0.1",
"bn.js": "^4.11.8",
"chai": "^4.2.0",
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eth-gas-reporter": "^0.2.25",
"ethlint": "^1.2.5",
"ganache-cli": "^6.10.2",
"istanbul": "^0.4.5",
"mocha": "^6.0.2",
"mocha-circleci-reporter": "^0.0.3",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"rimraf": "^2.6.3",
"shortid": "^2.2.14",
"solhint": "^3.2.2",
"solidity-coverage": "^0.7.13",
"solidity-steamroller": "^1.1.0",
"truffle": "^5.1.48",
"web3-utils": "^1.0.0-beta.51"
}
}