-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 KB
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
{
"name": "@tp-x/oapi-doc",
"version": "1.0.0",
"description": "ThingsPro Restful OAPI documentation",
"repository": "git@github.com:MOXA-ISD/oapi-doc.git",
"author": "Zack Yang <zack9433@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"scripts": {
"commit": "git-cz",
"clean": "lerna clean",
"start": "npm-run-all 'lerna:exec -- --scope @tp-x/{1}-oapi-doc -- npm start' --",
"build": "npm-run-all 'lerna:exec -- --scope @tp-x/{1}-oapi-doc -- npm run build' --",
"lint": "npm-run-all 'lerna:exec -- --scope @tp-x/{1}-oapi-doc -- npm run lint' --",
"lerna:exec": "lerna exec",
"postinstall": "lerna link",
"lerna:add": "lerna add",
"lerna:publish": "lerna publish",
"lerna:updated": "lerna updated"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"commitizen": "^3.0.7",
"husky": "^1.3.1",
"lerna": "^3.4.3",
"npm-run-all": "^4.1.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS"
}
}
}