forked from gnosis/conditional-tokens-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.07 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
{
"name": "@gnosis.pm/conditional-tokens-contracts",
"version": "1.0.3",
"description": "Collection of smart contracts for the conditional tokens",
"scripts": {
"lint": "eslint .",
"develop": "truffle develop",
"compile": "truffle compile",
"migrate": "truffle migrate",
"networks": "truffle networks",
"test": "truffle test",
"lint-contracts": "solium -d contracts/",
"injectnetinfo": "tnt iN",
"extractnetinfo": "tnt eN",
"resetnetinfo": "truffle networks --clean && tnt iN",
"prepack": "eslint . && npm run lint-contracts && truffle compile && truffle networks --clean && tnt iN && npx tnt cleanBuild"
},
"keywords": [
"Ethereum",
"Gnosis",
"Prediction-Market",
"Solidity",
"Truffle"
],
"author": "Gnosis (https://gnosis.io)",
"license": "LGPL-3.0",
"dependencies": {
"openzeppelin-solidity": "2.3.0"
},
"devDependencies": {
"@codechecks/client": "^0.1.9",
"@gnosis.pm/safe-contracts": "github:gnosis/safe-contracts",
"@gnosis.pm/truffle-nice-tools": "^1.1.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eth-gas-reporter": "^0.2.11",
"eth-sig-util": "^2.4.4",
"ethlint": "^1.2.4",
"husky": "^4.0.2",
"lint-staged": "^9.2.5",
"lodash": "^4.17.15",
"npm-prepublish": "^1.2.3",
"openzeppelin-test-helpers": "^0.5.0",
"prettier": "1.19.1",
"run-with-testrpc": "^0.3.1",
"truffle": "^5.0.36",
"truffle-flattener": "^1.4.4",
"truffle-hdwallet-provider": "^1.0.17",
"web3": "^2.0.0-alpha.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnosis/conditional-tokens-contracts.git"
},
"bugs": {
"url": "https://github.com/gnosis/conditional-tokens-contracts/issues"
},
"homepage": "https://github.com/gnosis/conditional-tokens-contracts#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}