-
Notifications
You must be signed in to change notification settings - Fork 428
/
package.json
62 lines (62 loc) · 2.64 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"private": true,
"description": "基于 Vue 、JSON Schema 快速构建一个带完整校验的form表单",
"repository": "https://github.com/lljj-x/vue-json-schema-form",
"homepage": "https://github.com/lljj-x/vue-json-schema-form",
"author": "Liu.Jun",
"workspaces": [
"packages/lib/**",
"packages/docs",
"packages/demo/**"
],
"scripts": {
"docs:dev": "yarn workspace docs dev",
"docs:build": "yarn workspace docs build",
"lib:build": "yarn lib-element:build && yarn lib-iview3:build && yarn lib3-element:build && yarn lib3-ant:build && yarn lib3-naive:build",
"lib-element:watch": "yarn workspace @lljj/vue-json-schema-form watch",
"lib-element:build": "yarn workspace @lljj/vue-json-schema-form build",
"lib-iview3:watch": "yarn workspace @lljj/vue2-form-iview3 watch",
"lib-iview3:build": "yarn workspace @lljj/vue2-form-iview3 build",
"lib3-element:watch": "yarn workspace @lljj/vue3-form-element watch",
"lib3-element:build": "yarn workspace @lljj/vue3-form-element build",
"lib3-ant:watch": "yarn workspace @lljj/vue3-form-ant watch",
"lib3-ant:build": "yarn workspace @lljj/vue3-form-ant build",
"lib3-naive:build": "yarn workspace @lljj/vue3-form-naive build",
"demo:dev": "yarn workspace demo dev",
"demo:build": "yarn workspace demo build",
"demo3:dev": "yarn workspace demo-v3 dev",
"demo3:build": "yarn workspace demo-v3 build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2",
"clean": "lerna clean && rm -rf node_modules",
"packages:diff": "lerna diff",
"packages:list": "lerna ls -l",
"packages:changed": "lerna changed",
"packages:build": "lerna run --stream --sort build",
"publish1": "yarn run lib:build && lerna publish",
"autoPublish": "lerna publish --conventional-commits --yes",
"autoVersion": "lerna version --conventional-commits --yes"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@vue/compiler-sfc": "^3.0.0",
"naive-ui": "^2.26.1",
"commitizen": "^4.1.2",
"conventional-changelog-cli": "^2.0.34",
"cz-conventional-changelog": "^3.2.0",
"husky": "^4.2.5",
"lerna": "^3.22.1"
},
"version": "0.0.0"
}