forked from JoinColony/colonyNetwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 4.06 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
80
81
82
83
84
85
86
87
88
89
{
"name": "@colony.io/colony-network-contracts",
"version": "1.0.0",
"description": "Contracts for Colony Network",
"scripts": {
"solium-staged": "bash ./scripts/solium.sh",
"eslint-staged": "bash ./scripts/eslint.sh",
"eslint": "eslint .",
"solium": "solium --dir .",
"check:storagevars": "./node_modules/babel-cli/bin/babel-node.js ./scripts/check-storage.js",
"version:contracts": "bash ./scripts/version-contracts.sh",
"generate:test:contracts": "bash ./scripts/generate-test-contracts.sh",
"clean:test:contracts": "rimraf ./contracts/*Updated*.*",
"clean:contracts": "rimraf ./build/contracts/*",
"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:upgrade": "npm run start:blockchain:client parity & npm run generate:test:contracts && truffle migrate --reset --compile-all && truffle test ./upgrade-test/* --network integration",
"test:contracts:gasCosts": "npm run start:blockchain:client & truffle migrate --reset --compile-all && truffle test gasCosts/gasCosts.js --network development",
"test:contracts:patricia": "npm run start:blockchain:client & truffle migrate --reset --compile-all && truffle test packages/reputation-miner/patricia-test.js --network development",
"test:contracts:coverage": "SOLIDITY_COVERAGE=1 solidity-coverage && istanbul check-coverage --statements 94 --branches 88 --functions 92 --lines 94",
"pretest:contracts": "sed -ie \"s/eth-gas-reporter/mocha-circleci-reporter/g\" ./truffle.js && rimraf ./truffle.jse",
"pretest:contracts:upgrade": "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:upgrade": "npm run clean:test:contracts | npm run stop:blockchain:client",
"posttest:contracts:gasCosts": "npm run stop:blockchain:client",
"posttest:contracts:patricia": "npm run stop:blockchain:client"
},
"husky": {
"hooks": {
"pre-commit": "yarn eslint-staged && yarn solium-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoinColony/colonyNetwork.git"
},
"author": "Colony (https://colony.io/)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/JoinColony/colonyNetwork/issues"
},
"homepage": "https://github.com/JoinColony/colonyNetwork#readme",
"devDependencies": {
"@colony/eslint-config-colony": "5.0.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"bn.js": "^4.11.8",
"chai": "^4.1.2",
"eslint": "^5.0.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-jest": "^2.1.1",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-prettier": "^2.6.0",
"eth-gas-reporter": "^0.1.2",
"ethereumjs-util": "^5.2.0",
"ganache-cli": "6.1.6",
"ganache-core": "^2.0.2",
"husky": "^1.0.0-rc.6",
"istanbul": "^0.4.5",
"jsonfile": "^4.0.0",
"mocha": "^5.2.0",
"mocha-circleci-reporter": "^0.0.3",
"pre-commit": "^1.2.2",
"prettier": "^1.12.1",
"rimraf": "^2.6.2",
"shortid": "^2.2.8",
"solidity-coverage": "0.5.5",
"solidity-parser-antlr": "^0.3.0",
"solium": "^1.1.7",
"truffle": "^4.1.11",
"web3-utils": "^1.0.0-beta.34"
},
"dependencies": {
"@colony/colony-js-contract-loader-fs": "^1.3.0"
},
"private": true,
"workspaces": [
"packages/*"
]
}