UNPKG

1.87 kBJSONView Raw
1{
2 "name": "vue-convenia-validator",
3 "version": "0.1.34",
4 "description": "A model-based form validation library for vue inspired by vuelidate and vee-validate.",
5 "module": "dist/cee-validate.es5.js",
6 "main": "dist/cee-validate.umd.js",
7 "types": "dist/types/index.d.ts",
8 "files": [
9 "dist"
10 ],
11 "repository": "https://github.com/iErik/cee-validate",
12 "license": "MIT",
13 "author": {
14 "name": "Erik Isidore",
15 "email": "ericssonico@protonmail.ch"
16 },
17 "bugs": {
18 "url": "https://github.com/iErik/cee-validate/issues"
19 },
20 "engines": {
21 "node": ">=6.0.0"
22 },
23 "keywords": [
24 "validation",
25 "validator",
26 "convenia",
27 "VueJS",
28 "form",
29 "Vue"
30 ],
31 "scripts": {
32 "clear": "rimraf dist",
33 "lint": "eslint --ext js,ts,vue ./src",
34 "lint:fix": "eslint --fix --ext js,ts,vue ./src",
35 "test": "jest",
36 "test:watch": "jest --watch",
37 "test:prod": "npm run lint && npm run test -- --coverage --no-cache",
38 "watch": "rollup -cw",
39 "build": "npm run clear && rollup -c"
40 },
41 "devDependencies": {
42 "@types/jest": "^23.3.9",
43 "@types/node": "^10.12.6",
44 "@vue/test-utils": "^1.0.0-beta.25",
45 "eslint": "^5.9.0",
46 "eslint-plugin-vue-libs": "^3.0.0",
47 "jest": "^23.6.0",
48 "jsdom": "^13.0.0",
49 "rimraf": "^2.6.2",
50 "rollup": "^0.67.1",
51 "rollup-plugin-commonjs": "^9.2.0",
52 "rollup-plugin-node-resolve": "^3.4.0",
53 "rollup-plugin-sourcemaps": "^0.4.2",
54 "rollup-plugin-typescript2": "^0.18.0",
55 "ts-jest": "^23.10.4",
56 "typescript": "^3.1.6",
57 "typescript-eslint-parser": "^20.1.1",
58 "vue": "^2.5.17",
59 "vue-jest": "^3.0.0",
60 "vue-template-compiler": "^2.5.17"
61 },
62 "peerDependencies": {
63 "vue": "^2.5.17"
64 },
65 "dependencies": {
66 "dayjs-ext": "^2.0.2",
67 "vue-class-component": "^6.3.2",
68 "vue-property-decorator": "^7.2.0"
69 }
70}