-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
113 lines (113 loc) · 3.67 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
110
111
112
113
{
"name": "@mediv0/validator",
"version": "1.0.1",
"private": false,
"description": "🛡️ Highly extensible & customizable input validator for Vue2.",
"author": "mediv0<mahdi.wtf>",
"license": "MIT",
"main": "dist/validator.cjs.js",
"browser": "dist/validator.esm-browser.prod.js",
"module": "dist/validator.esm-browser.prod.js",
"unpkg": "dist/validator.global.prod.js",
"jsdelivr": "dist/validator.global.prod.js",
"types": "./dist/types/index.d.ts",
"files": [
"src/*",
"dist/*"
],
"homepage": "https://github.com/mediv0/vue-input-validator",
"repository": {
"type": "git",
"url": "https://github.com/mediv0/vue-input-validator"
},
"bugs": {
"url": "https://github.com/mediv0/vue-input-validator/issues"
},
"keywords": [
"vue",
"vuejs",
"validator",
"password",
"input",
"VueComponent",
"PasswordValidator",
"InputValidator",
"VueDirective",
"Security",
"form",
"formValidator",
"formValidation",
"vue2FormValidation",
"vueFormValidation"
],
"scripts": {
"dev": "vue-cli-service serve dev/main.js -w",
"build": "node scripts/pack.js",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"pretty": "prettier src/**/* --write",
"demo": "vue-cli-service serve example/main.js -w"
},
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.13.7",
"@babel/preset-env": "^7.12.17",
"@babel/preset-typescript": "^7.12.17",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-replace": "^2.3.4",
"@types/jest": "^24.0.19",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/babel-preset-jsx": "^1.2.4",
"@vue/cli-plugin-babel": "^4.5.11",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^1.0.3",
"babel-loader": "^8.2.2",
"babel-plugin-transform-runtime": "^6.23.0",
"brotli": "^1.3.2",
"chalk": "^4.1.0",
"core-js": "^3.6.5",
"cssnano": "^4.1.10",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"execa": "^5.0.0",
"fs-extra": "^9.1.0",
"lint-staged": "^9.5.0",
"node-sass": "^4.12.0",
"postcss": "^8.2.6",
"postcss-cssnext": "^3.1.0",
"postcss-nested": "^5.0.3",
"postcss-simple-vars": "^6.0.3",
"prettier": "^1.19.1",
"rollup": "^2.39.1",
"rollup-plugin-license": "^2.2.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass-loader": "^8.0.2",
"typescript": "~3.9.3",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^9.1.2",
"vue-template-compiler": "^2.6.11",
"zlib": "^1.0.5"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}