-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 1.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
{
"name": "otp-input-vue",
"description": "fully customizable opt input for web apps, compatible with Vue 2.x",
"version": "1.0.2",
"private": false,
"author": {
"name": "Shahriar Eshraghi",
"email": "shahriareshraghi@yahoo.com"
},
"repository": "https://github.com/novaday-co/otp-input-vue",
"bugs": "https://github.com/novaday-co/otp-input-vue/issues",
"keywords": [
"vuejs",
"vue",
"otpInput",
"verifyCode"
],
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build-library": "vue-cli-service build --target lib --name vue-otp-input ./src/install.js",
"lint": "vue-cli-service lint"
},
"main": ".dist/vue-otp-input.common.js",
"dependencies": {
"@babel/eslint-parser": "^7.18.9",
"core-js": "^3.6.5",
"vue": "^2.6.11"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-airbnb": "^6.0.0",
"eslint": "^8.21.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-vue": "^9.3.0",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/airbnb"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {},
"overrides": [
{
"files": [
"dist/*"
]
}
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"jest": {
"preset": "@vue/cli-plugin-unit-jest"
}
}