forked from logaretm/vee-validate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.48 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "vee-validate",
"version": "3.3.9",
"description": "Template Based Validation Framework for Vue.js",
"author": "Abdelrahman Awad <[email protected]>",
"license": "MIT",
"module": "dist/vee-validate.esm.js",
"unpkg": "dist/vee-validate.js",
"main": "dist/vee-validate.js",
"types": "dist/types/index.d.ts",
"homepage": "https://logaretm.github.io/vee-validate/",
"repository": "https://github.com/logaretm/vee-validate",
"sideEffects": false,
"scripts": {
"test": "jest",
"lint": "eslint **/*.{js,jsx,ts,tsx} --fix",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "./scripts/deploy.sh",
"build:locale": "node scripts/locale.js",
"build:main": "node scripts/main.js",
"ts:defs": "node scripts/definitions.js",
"build": "npm run build:main && npm run ts:defs && npm run build:locale",
"cover": "jest --coverage",
"prepublishOnly": "npm run build && npm run ts:defs"
},
"keywords": [
"VueJS",
"Vue",
"validation",
"validator",
"inputs",
"form"
],
"files": [
"dist/*.js",
"dist/locale/*.json",
"dist/**/*.d.ts"
],
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@commitlint/cli": "^9.1.1",
"@types/jest": "^26.0.8",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"@vue/server-test-utils": "^1.0.3",
"@vue/test-utils": "1.0.3",
"@vuepress/plugin-back-to-top": "^1.5.2",
"@vuepress/plugin-google-analytics": "^1.5.2",
"@vuepress/plugin-pwa": "^1.5.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.2.2",
"chalk": "^4.1.0",
"codesandbox": "^2.1.16",
"cross-env": "^7.0.2",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"filesize": "^6.1.0",
"flush-promises": "^1.0.2",
"fs-extra": "^9.0.1",
"gzip-size": "^5.1.1",
"husky": "^4.2.5",
"jest": "^26.2.2",
"lint-staged": "^10.2.11",
"markdown-it-custom-block": "^0.1.1",
"mkdirp": "^1.0.4",
"prettier": "^1.19.1",
"raf-stub": "^3.0.0",
"rollup": "^2.23.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^26.1.4",
"tslib": "^2.0.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.9.7",
"uglify-js": "^3.10.0",
"vue": "^2.6.11",
"vue-jest": "^3.0.6",
"vue-server-renderer": "^2.6.11",
"vue-template-compiler": "^2.6.11",
"vuepress": "^1.5.2"
},
"eslintIgnore": [
"locale",
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"jest --maxWorkers=1 --bail --findRelatedTests"
],
"*.js": [
"eslint --fix",
"prettier --write",
"jest --maxWorkers=1 --bail --findRelatedTests"
]
},
"peerDependencies": {
"vue": "^2.5.18"
}
}