-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.43 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
{
"name": "meridio-contracts",
"version": "0.1.0",
"description": "",
"directories": {
"test": "test"
},
"scripts": {
"coverage": "./node_modules/.bin/solidity-coverage",
"test": "truffle test",
"hint": "solhint 'contracts/**/*.sol'",
"myth": "rm -rf ./build/contracts && truffle compile && myth --truffle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MeridioRE/meridio-contracts.git"
},
"author": "Meridio",
"license": "MIT",
"homepage": "https://github.com/MeridioRE/meridio-contracts#readme",
"devDependencies": {
"eslint": "~4.18.2",
"eslint-config-airbnb-base": "~13.1.0",
"eslint-config-google": "~0.9.1",
"eslint-plugin-import": "~2.14.0",
"eslint-plugin-mocha": "~5.0.0",
"eslint-plugin-node": "~6.0.1",
"eth-gas-reporter": "~0.1.9",
"ethereumjs-abi": "~0.6.5",
"ethereumjs-util": "~6.0.0",
"husky": "~1.3.1",
"lint-staged": "~8.1.0",
"mocha": "~5.2.0",
"solhint": "~1.5.1",
"solidity-coverage": "~0.5.11",
"truffle-hdwallet-provider": "~1.0.0-web3one.2"
},
"dependencies": {
"commander": "~2.19.0",
"dotenv": "~4.0.0",
"openzeppelin-solidity": "~1.12.0",
"truffle": "~4.1.15",
"truffle-contract": "~3.0.7",
"web3": "~1.0.0-beta.41"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.sol": [
"solhint",
"git add"
]
}
}