forked from HAECHI-LABS/vvisp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1020 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"private": true,
"scripts": {
"lerna:bootstrap": "lerna bootstrap --hoist --no-ci",
"bootstrap": "npm install && npm run lerna:bootstrap",
"test": "./scripts/test.sh",
"ci": "./scripts/ci.sh",
"lint:sol": "solium -d .",
"lint:sol:fix": "solium -d . --fix"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/travis-cli": "^7.2.1",
"coveralls": "^3.0.2",
"husky": "^1.2.1",
"lerna": "^3.10.1",
"lint-staged": "^8.1.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"prettier": "1.15.3"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"printWidth": 80
}
}