forked from gnosis/pm-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.64 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.64 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@levelk/pm-contracts",
"version": "1.2.0",
"description": "Collection of smart contracts for the Gnosis prediction market platform",
"scripts": {
"lint": "eslint .",
"develop": "truffle develop",
"compile": "truffle compile",
"migrate": "truffle migrate",
"networks": "truffle networks",
"test-norpc": "truffle test --network testing",
"test": "truffle test",
"lint-contracts": "solhint contracts/**/*.sol",
"injectnetinfo": "tnt iN",
"extractnetinfo": "tnt eN",
"resetnetinfo": "truffle networks --clean && tnt iN",
"measuregasstats": "cross-env TESTDIR=test/javascript/ tnt measureGas -f inheritanceMap.json -o build/gas-stats.json"
},
"keywords": [
"Ethereum",
"Gnosis",
"Prediction-Market",
"Solidity",
"Truffle"
],
"author": "Gnosis (https://gnosis.pm)",
"license": "LGPL-3.0",
"dependencies": {
"@aragon/os": "4.2.1",
"canonical-weth": "^1.2.0"
},
"devDependencies": {
"@digix/tempo": "^0.2.0",
"@gnosis.pm/truffle-nice-tools": "^1.1.3",
"babel-eslint": "^10.0.1",
"cross-env": "^5.2.0",
"decimal.js": "^10.0.0",
"eslint": "^5.7.0",
"eslint-plugin-babel": "^5.2.1",
"fs-extra": "^7.0.0",
"lodash": "^4.17.11",
"npm-prepublish": "^1.2.3",
"solhint": "^1.4.1",
"truffle": "^4.1.14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnosis/pm-contracts.git"
},
"bugs": {
"url": "https://github.com/gnosis/pm-contracts/issues"
},
"homepage": "https://github.com/gnosis/pm-contracts#readme",
"main": "truffle.js",
"files": [
"build",
"contracts",
"docs"
]
}