-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.33 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.33 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
{
"name": "poseidon-contracts",
"version": "1.0.0",
"description": "",
"directories": {
"test": "test"
},
"scripts": {
"compile": "truffle compile",
"console": "truffle console",
"lint": "solium -d contracts/",
"dev": "truffle migrate --network development",
"ropsten": "truffle migrate --network ropsten",
"test": "truffle test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poseidon-network/poseidon-contracts.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/poseidon-network/poseidon-contracts/issues"
},
"homepage": "https://github.com/poseidon-network/poseidon-contracts",
"devDependencies": {
"dotenv": "^5.0.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"ethereumjs-abi": "^0.6.4",
"ethereumjs-util": "^5.1.2",
"ethlint": "^1.2.5",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"openzeppelin-solidity": "2.2.0",
"solidity-coverage": "^0.5.0",
"solium-plugin-zeppelin": "^0.0.2",
"truffle-hdwallet-provider": "^1.0.8",
"web3-utils": "^1.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint \"**/*.js\" --fix",
"git add"
],
"*.sol": [
"solium -d . --fix",
"git add"
]
}
}