This repository has been archived by the owner on Aug 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.84 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
{
"name": "@formvuelate/plugin-vee-validate",
"version": "2.4.0",
"description": "FormVueLate Vee-validate plugin",
"main": "dist/formvuelate-plugin-vee-validate.cjs.js",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/formvuelate/formvuelate-plugin-vee-validate.git"
},
"author": {
"name": "Abdelrahman Awad",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"build": "rollit --global vee-validate:VeeValidate vue:Vue --externals vee-validate vue",
"test": "yarn test:unit",
"test:unit": "jest --coverage",
"test:unit:watch": "yarn test:unit --watch",
"lint": "eslint --fix src/**/* tests/**/*"
},
"devDependencies": {
"@babel/preset-env": "^7.9.0",
"@vue/test-utils": "^2.0.0-alpha.7",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.2.6",
"eslint": "^7.3.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"flush-promises": "^1.0.2",
"formvuelate": "^3.0.0",
"jest": "^26.6.3",
"rollit": "^0.0.9",
"vee-validate": "^4.0.0-beta.16",
"vue": "^3.0.0-beta.12",
"vue-jest": "^5.0.0-alpha.0",
"yup": "^0.29.3"
},
"peerDependencies": {
"formvuelate": "^3.2.0",
"vee-validate": "^4.2.0",
"vue": "^3.0.0"
},
"files": [
"src/*",
"dist/*"
],
"bugs": {
"url": "https://github.com/formvuelate/formvuelate-plugin-vee-validate/issues"
},
"homepage": "https://github.com/formvuelate/formvuelate-plugin-vee-validate#readme",
"module": "dist/formvuelate-plugin-vee-validate.es.js",
"unpkg": "dist/formvuelate-plugin-vee-validate.js",
"browser": "dist/formvuelate-plugin-vee-validate.es.js"
}