forked from logaretm/vee-validate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.92 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": "vee-validate",
"version": "2.2.0",
"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",
"typings": "types/index.d.ts",
"homepage": "https://baianat.github.io/vee-validate/",
"repository": "https://github.com/baianat/vee-validate",
"scripts": {
"test": "jest",
"lint": "eslint src tests --fix",
"flow": "flow",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "./scripts/deploy.sh",
"build:locale": "node scripts/locale.js",
"build:umd": "node scripts/umd.js",
"build:esm": "node scripts/esm.js",
"build": "npm run build:umd && npm run build:esm && npm run build:locale",
"cover": "jest --coverage"
},
"keywords": [
"VueJS",
"Vue",
"validation",
"validator",
"inputs",
"form"
],
"files": [
"dist/*.js",
"dist/locale/*.js",
"types/*.d.ts"
],
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-transform-flow-strip-types": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@commitlint/cli": "^7.5.2",
"@vue/test-utils": "1.0.0-beta.12",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.5.0",
"chalk": "^2.4.2",
"cross-env": "^5.2.0",
"date-fns": "2.0.0-alpha.25",
"eslint": "^5.15.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.3.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"filesize": "^4.1.2",
"flow-bin": "^0.94.0",
"flush-promises": "^1.0.2",
"gzip-size": "^5.0.0",
"husky": "^1.3.1",
"jest": "^24.5.0",
"lint-staged": "^8.1.5",
"mkdirp": "^0.5.1",
"polish-plurals": "^1.1.0",
"rollup": "^1.6.0",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-replace": "^2.1.0",
"uglify-js": "^3.4.9",
"validator": "^10.8.0",
"vue": "^2.6.9",
"vue-i18n": "^8.9.0",
"vue-jest": "^3.0.4",
"vue-server-renderer": "^2.6.9",
"vue-template-compiler": "^2.6.9",
"vuepress": "^0.14.10"
},
"eslintIgnore": [
"locale",
"dist",
"flow"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add",
"jest --maxWorkers=1 --bail --findRelatedTests"
]
},
"dependencies": {}
}