-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
25 lines (25 loc) · 994 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
{
"name": "api3-dao",
"license": "Multi-license",
"version": "0.1.0",
"scripts": {
"bootstrap": "npm install && lerna bootstrap",
"lint": "npm run lint:eslint && npm run lint:solhint",
"lint:solhint": "solhint ./packages/pool/contracts/*.sol && solhint ./packages/api3-voting/contracts/*.sol && solhint ./packages/dao/contracts/*.sol && solhint ./packages/convenience/contracts/*.sol",
"lint:eslint": "eslint . --ext .js",
"pretty-quick": "pretty-quick --staged --pattern \"**/*.js\"",
"test:api3-voting": "cd ./packages/api3-voting && npm run test",
"test:dao": "cd ./packages/dao && npm run test",
"test:pool": "cd ./packages/pool && npm run test",
"test:convenience": "cd ./packages/convenience && npm run test",
"prettify": "prettier --write \"./**/*.js\""
},
"devDependencies": {
"eslint": "^7.27.0",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"solhint": "^3.3.6"
}
}