-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
103 lines (103 loc) · 3 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "root",
"private": true,
"devEngines": {
"node": "8.x || 9.x || 10.x || 11.x"
},
"workspaces": [
"packages/*"
],
"scripts": {
"start": "vuepress dev docs",
"build": "formily-tpl build",
"build:docs": "vuepress build docs",
"test": "jest --coverage",
"test:prod": "jest --coverage --silent",
"preversion": "yarn install --ignore-engines && npm run build && npm run lint && npm run test",
"version:alpha": "lerna version prerelease --preid alpha",
"version:beta": "lerna version prerelease --preid beta",
"version:rc": "lerna version prerelease --preid rc",
"version:patch": "lerna version patch",
"version:minor": "lerna version minor",
"version:preminor": "lerna version preminor --preid beta",
"version:major": "lerna version major",
"release": "lerna publish from-package --yes",
"lint": "eslint ."
},
"devDependencies": {
"@formily/template": "^1.0.0-alpha.0",
"@formily/core": "^2.0.0",
"@formily/vue": "^2.0.0",
"@vue/composition-api": "^1.4.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/vue": "^5.6.2",
"@vue/test-utils": "1.0.0-beta.22",
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.8.2",
"@vuepress-dumi/vuepress-plugin-dumi-previewer": "0.3.11",
"@vuepress-dumi/vuepress-theme-dumi": "0.3.11",
"@vuepress/plugin-back-to-top": "^1.8.2",
"@vuepress/plugin-medium-zoom": "^1.8.2",
"codesandbox": "^2.2.3",
"core-js": "^2.4.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-markdown": "^2.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-vue": "^7.0.1",
"ghooks": "^2.0.4",
"jest": "^27.4.5",
"lint-staged": "^8.2.1",
"@commitlint/cli": "^14.1.0",
"@commitlint/prompt-cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-import-plugin": "1.6.1",
"ts-jest": "^27.1.2",
"ts-node": "^9.1.1",
"lerna": "^4.0.0",
"typescript": "^4.1.5",
"vue": "^2.6.0",
"vuepress": "^1.8.2",
"vuepress-plugin-typescript": "^0.3.1",
"sass": "^1.34.1",
"sass-loader": "^8.0.2",
"raw-loader": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formilyjs/vant.git"
},
"config": {
"ghooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit"
}
},
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --ext .ts,.tsx,.js",
"pretty-quick --staged",
"git add"
],
"*.md": [
"pretty-quick --staged",
"git add"
]
},
"dependencies": {},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-beta.1",
"vue": "^2.6.0 || >=3.0.0-rc.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
}
}