forked from gnosis/hashi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 939 Bytes
/
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
{
"private": true,
"name": "@gnosis/hashi",
"version": "1.0.0",
"description": "",
"author": {
"name": "gnosis",
"url": "https://github.com/gnosis"
},
"scripts": {
"prepare": "husky install",
"preinstall": "yarn contracts:install",
"build": "yarn contracts:build",
"test": "yarn contracts:test",
"lint": "yarn contracts:lint",
"coverage": "yarn contracts:coverage",
"contracts:install": "cd packages/evm && yarn install",
"contracts:build": "cd packages/evm && yarn build",
"contracts:test": "cd packages/evm && yarn test",
"contracts:lint": "cd packages/evm && yarn lint",
"contracts:coverage": "cd packages/evm && yarn coverage"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"husky": "^8.0.3",
"prettier": "^2.8.7",
"prettier-plugin-solidity": "^1.0.0"
},
"packageManager": "[email protected]"
}