forked from yavin-dev/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 856 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 856 Bytes
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
{
"name": "navi",
"version": "0.2.0",
"description": "Navi Project",
"author": "team-navi@googlegroups.com",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/yahoo/navi"
},
"scripts": {
"start": "lerna exec --scope navi-app npm start",
"postinstall": "lerna bootstrap --concurrency 2 --ci",
"test": "lerna run test",
"lerna-ci-publish": "lerna publish --canary --exact preminor --force-publish=* --yes"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && pushd packages/webservice && ./gradlew lintKotlin && popd",
"commit-msg": "validate-commit-msg -p eslint"
}
},
"devDependencies": {
"husky": "^3.0.1",
"lerna": "^3.15.0",
"prettier": "^1.13.5",
"pretty-quick": "^1.6.0",
"validate-commit": "^3.4.0"
}
}