-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.82 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
{
"name": "vue-convenia-validator",
"version": "0.1.54",
"description": "A model-based form validation library for vue inspired by vuelidate and vee-validate.",
"module": "dist/cee-validate.es5.js",
"main": "dist/cee-validate.umd.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/iErik/cee-validate",
"license": "MIT",
"author": {
"name": "Erik Isidore",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/iErik/cee-validate/issues"
},
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"validation",
"validator",
"convenia",
"VueJS",
"form",
"Vue"
],
"scripts": {
"clear": "rimraf dist",
"lint": "eslint --ext js,ts,vue ./src",
"lint:fix": "eslint --fix --ext js,ts,vue ./src",
"test": "jest",
"test:watch": "jest --watch",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
"watch": "rollup -cw",
"build": "yarn clear && rollup -c"
},
"devDependencies": {
"@types/jest": "^23.3.9",
"@types/node": "^10.12.6",
"@vue/test-utils": "^1.0.0-beta.25",
"eslint": "^5.9.0",
"eslint-plugin-vue-libs": "^3.0.0",
"jest": "^23.6.0",
"jsdom": "^13.0.0",
"rimraf": "^2.6.2",
"rollup": "^0.67.1",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.18.0",
"ts-jest": "^23.10.4",
"typescript": "^3.1.6",
"typescript-eslint-parser": "^20.1.1",
"vue": "^2.5.17",
"vue-jest": "^3.0.0",
"vue-template-compiler": "^2.5.17"
},
"peerDependencies": {
"vue": "^2.5.17"
},
"dependencies": {
"dayjs-ext": "^2.0.2",
"vue-class-component": "^6.3.2",
"vue-property-decorator": "^7.2.0"
}
}