-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.37 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
{
"name": "vue-mobile-detection",
"description": "Vue.js prototype function `this.$isMobile()` that returns a Boolean value depending on whether or not the user is browsing with a mobile",
"author": "Alberto Jerez <[email protected]>",
"main": "dist/vue-mobile-detection.umd.min.js",
"unpkg": "dist/vue-mobile-detection.umd.min.js",
"version": "2.0.1",
"private": false,
"repository": {
"type": "git",
"url": "git://github.com/ajerez/vue-mobile-detection.git"
},
"keywords": [
"vue",
"mobile",
"detection"
],
"scripts": {
"serve": "vue-cli-service serve",
"build:docs": "vue-cli-service build --dest docs --name vue-mobile-detection src/main.js",
"lint": "vue-cli-service lint",
"build": "vue-cli-service build --target lib --name vue-mobile-detection ./src/components/index.js"
},
"dependencies": {
"vue": "^3.2.20"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.15",
"@vue/cli-plugin-eslint": "~4.5.15",
"@vue/cli-service": "~4.5.15",
"@vue/compiler-sfc": "^3.2.20",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^8.0.1",
"lint-staged": "^9.5.0",
"prettier": "^2.2.1"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}