-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "smart-contracts",
"version": "2.0.0",
"description": "",
"main": "truffle.js",
"directories": {
"test": "test"
},
"dependencies": {
"openzeppelin-solidity": "2.3.0",
"tabookey-gasless": "0.4.0-beta1",
"truffle": "5.0.27",
"truffle-hdwallet-provider-privkey": "^0.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"openzeppelin-test-helpers": "0.4.0",
"prettier": "^1.16.4"
},
"scripts": {
"test": "truffle test",
"pretty": "prettier --write --single-quote --tab-width 2 \"**/*.js\"",
"gsn-dock-relay": "npm explore tabookey-gasless npm run gsn-dock-relay",
"gsn-dock-relay-ganache": "npm explore tabookey-gasless npm run gsn-dock-relay-ganache"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,json}": [
"prettier --single-quote --write --tab-width 2",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpringRole/solidity-contracts.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SpringRole/solidity-contracts/issues"
},
"homepage": "https://github.com/SpringRole/solidity-contracts#readme"
}