forked from logaretm/vee-validate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.56 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
{
"name": "vee-validate",
"version": "2.0.0-beta.18",
"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",
"build": "webpack && cross-env NODE_ENV=production webpack -p",
"dev": "webpack --colors --progress --watch",
"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-loader": "^6.2.7",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.18.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-loader": "^1.6.1",
"eslint-plugin-import": "^1.12.0",
"jest": "^17.0.3",
"moment": "^2.14.1",
"validator": "^6.1.0",
"webpack": "2.1.0-beta.25"
}
}