forked from logaretm/vee-validate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.9 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
{
"name": "vee-validate",
"version": "2.0.6",
"description": "Simple Vue.js input validation plugin",
"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": "http://vee-validate.logaretm.com",
"repository": "https://github.com/baianat/vee-validate",
"scripts": {
"test": "jest",
"lint": "eslint ./src --fix",
"flow": "flow",
"build:locale": "babel-node build/locale.js",
"build:umd": "babel-node build/umd.js",
"build:esm": "babel-node build/esm.js",
"build": "npm run build:umd && npm run build:esm && npm run build:locale",
"cover": "jest --coverage",
"precommit": "npm run lint && npm run flow && npm run test"
},
"keywords": [
"VueJS",
"Vue",
"validation",
"validator",
"inputs",
"form"
],
"files": [
"dist/*.js",
"dist/locale/*.js",
"types/*.d.ts"
],
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.12",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chalk": "^2.1.0",
"cross-env": "^5.0.5",
"date-fns": "2.0.0-alpha.7",
"eslint": "^4.5.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"filesize": "^3.6.0",
"flow-bin": "^0.56.0",
"flush-promises": "^1.0.0",
"gzip-size": "^4.1.0",
"jest": "^21.2.1",
"regenerator-runtime": "^0.11.0",
"rollup": "^0.49.2",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.2.0",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-nodent": "^0.2.2",
"rollup-plugin-replace": "^1.1.1",
"uglify-js": "^3.0.28",
"validator": "^8.1.0",
"vue": "^2.5.2",
"vue-i18n": "^7.3.2",
"vue-jest": "^1.0.0",
"vue-template-compiler": "^2.5.2"
},
"eslintIgnore": [
"tests",
"locale",
"dist",
"flow"
],
"jest": {
"testMatch": [
"**/tests/**/*.js"
],
"testPathIgnorePatterns": [
"/helpers/"
],
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.*.js",
"!src/install.js",
"!src/use.js",
"!src/messages.js",
"!src/plugins/date/messages.js"
],
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
}
},
"dependencies": {}
}