forked from vuelidate/vuelidate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.77 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
{
"name": "vuelidate",
"version": "1.0.0",
"private": true,
"description": "Simple, lightweight model-based validation for Vue.js",
"workspaces": {
"packages": [
"packages/*"
]
},
"repository": {
"type": "git",
"url": "https://github.com/vuelidate/vuelidate.git"
},
"dependencies": {
"vue-demi": "^0.13.11"
},
"optionalDependencies": {
"@vue/composition-api": "^1.3.1"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@vue/compiler-sfc": "^3.2.2",
"@vue/composition-api": "^1.3.1",
"@vue/test-utils": "^2.0.0-rc.12",
"@vue/test-utils-vue2": "npm:@vue/[email protected]",
"core-js": "^3.16.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.16.0",
"flush-promises": "^1.0.2",
"husky": "^7.0.1",
"jest": "^27.0.6",
"jest-serializer-vue": "^2.0.2",
"lerna": "^4.0.0",
"standard-version": "^9.3.1",
"vue": "^3.2.2",
"vue-template-compiler": "^2.6.14",
"vue-template-compiler2.7": "npm:[email protected]",
"vue2": "npm:[email protected]",
"vue2.7": "npm:[email protected]"
},
"scripts": {
"lerna:publish": "lerna publish --conventional-commits",
"lerna:publish:from-package": "lerna publish from-package",
"lerna:changed": "lerna changed",
"lerna:build": "lerna run build --parallel",
"lerna:version": "lerna version --conventional-commits",
"lerna:build-all": "yarn lerna:build && yarn build-docs",
"build-docs": "cd packages/docs && yarn build:docs",
"release": "yarn lerna:build && yarn lerna:publish",
"release:dry": "yarn lerna:build && yarn lerna:version --no-push --no-git-tag-version",
"test:unit": "npm run test:3",
"test:2": "npm run use-vue:2 && jest",
"test:2.7": "npm run use-vue:2.7 && jest",
"test:3": "npm run use-vue:3 && jest",
"test:all": "npm run test:2 && npm run test:2.7 && npm run test:3",
"use-vue:2": "node scripts/swap-vue.js 2 && vue-demi-switch 2",
"use-vue:2.7": "node scripts/swap-vue.js 2.7 && vue-demi-switch 2.7",
"use-vue:3": "node scripts/swap-vue.js 3 && vue-demi-switch 3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}