-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.66 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
{
"name": "@galtproject/private-property-registry",
"version": "1.0.0",
"description": "Bootstrap for Truffle/Solidity projects",
"directories": {
"test": "test"
},
"devDependencies": {
"@galtproject/core": "git+ssh://[email protected]/galtproject/galtproject-core.git#51395c0",
"@galtproject/eslint-config-galt": "^1.1.0",
"@galtproject/geodesic": "git+ssh://[email protected]/galtproject/galtproject-geodesic.git#92ebaea",
"@galtproject/libs": "git+ssh://[email protected]/galtproject/galtproject-libs.git#c99391e",
"@galtproject/math": "git+ssh://[email protected]/galtproject/galtproject-math.git#e235c33",
"@galtproject/solidity-test-chest": "https://github.com/galtproject/solidity-test-chest#605d332",
"@galtproject/utils": "git+ssh://[email protected]/galtproject/galtproject-utils-js.git#be10174",
"@openzeppelin/contracts": "2.4.0",
"@openzeppelin/test-environment": "^0.1.2",
"chai": "^4.2.0",
"cli-table": "^0.3.1",
"ethlint": "1.2.5",
"ganache-core": "2.8.0",
"lodash": "^4.17.15",
"mocha": "^7.0.1",
"solidity-coverage": "^0.6.7",
"truffle": "5.1.2",
"web3": "1.2.4"
},
"engines": {
"node": ">=10.15.3"
},
"repository": "https://github.com/galtproject/galtproject-private-property-registry",
"scripts": {
"test": "mocha --exit --recursive test --timeout 30000",
"compile": "truffle compile",
"deploy": "truffle migrate --network local",
"coverage": "SOLIDITY_COVERAGE=yes solidity-coverage",
"eslint": "eslint .",
"eslint-fix": "eslint . --fix",
"ethlint": "solium --dir ."
},
"author": "",
"license": "MIT",
"dependencies": {
"web3-utils": "^1.2.6"
}
}