This repository has been archived by the owner on Feb 19, 2022. It is now read-only.
forked from logaretm/vee-validate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.65 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
{
"name": "vee-validate",
"version": "1.0.0-beta.9",
"description": "Simple Vue.js input validation plugin",
"main": "dist/vee-validate.js",
"homepage": "http://vee-validate.logaretm.com",
"repository": "https://github.com/logaretm/vee-validate",
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"/src/(helpers|messages|utils)/",
"src/plugins/date/messages.js"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/helpers/",
"<rootDir>/node_modules/"
]
},
"scripts": {
"test": "jest",
"lint": "eslint ./src ./test",
"build": "rollup -c rollup.config.dev.js && rollup -c rollup.config.prod.js && rollup -c rollup.config.es6.js",
"cover": "jest --coverage"
},
"keywords": [
"VueJS",
"Vue",
"validation",
"validator",
"inputs",
"form"
],
"author": "Abdelrahman Awad <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.13.2",
"babel-jest": "^16.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.8.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.13.2",
"cross-env": "^2.0.0",
"eslint": "^3.1.1",
"eslint-config-airbnb-base": "^5.0.0",
"eslint-plugin-import": "^1.12.0",
"jest": "^16.0.2",
"moment": "^2.14.1",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-uglify": "^1.0.1",
"validator": "^6.1.0"
}
}