forked from diegoazh/gmap-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 814 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
{
"name": "monorepo-gmap-vue",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:diegoazh/gmap-vue.git",
"author": "\"Daniel Sim, Guillaume Leclerc\",",
"license": "MIT",
"scripts": {
"postinstall": "lerna bootstrap",
"start:docs": "lerna run dev",
"build": "lerna run build",
"test": "lerna run test",
"lint": "lerna run lint",
"release": "lerna version --conventional-commits --yes"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@commitlint/config-lerna-scopes": "^9.1.1",
"husky": "^4.2.5",
"lerna": "^3.22.1"
},
"husky": {
"hooks": {
"pre-commit": "lerna run precommit --concurrency 1 --stream",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}