This repository has been archived by the owner on Jan 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.25 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
{
"name": "vue-persistent-storage-manager",
"description": "Vue plugin that wraps the StorageManager API and provides the state of the persistent-storage permission alongside a storage estimate.",
"license": "MIT",
"repository": "github:DerYeger/vue-persistent-storage-manager",
"homepage": "https://github.com/DerYeger/vue-persistent-storage-manager",
"bugs": {
"url": "https://github.com/DerYeger/vue-persistent-storage-manager/issues"
},
"author": {
"name": "Jan Müller",
"url": "https://github.com/DerYeger"
},
"keywords": [
"vue",
"plugin",
"storagemanager",
"persistent-storage"
],
"version": "2.0.83",
"private": false,
"source": "src/index.ts",
"main": "dist/vue-persistent-storage-manager.js",
"module": "dist/vue-persistent-storage-manager.module.js",
"unpkg": "dist/vue-persistent-storage-manager.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"build": "microbundle && bundlesize",
"test": "jest",
"lint": "eslint --ext \".js,.ts\"",
"pretty": "prettier --write \"./**/*.{js,json,html,scss,ts,yml}\"",
"prepublishOnly": "yarn build"
},
"peerDependencies": {
"vue": "^2.0.0"
},
"devDependencies": {
"@babel/core": "7.20.7",
"@babel/eslint-parser": "7.19.1",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@types/jest": "27.5.2",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"@vue/test-utils": "1.3.3",
"babel-jest": "27.5.1",
"bundlesize2": "0.0.31",
"eslint": "8.30.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"flush-promises": "1.0.2",
"jest": "27.5.1",
"lint-staged": "13.1.0",
"microbundle": "0.15.1",
"prettier": "2.8.1",
"ts-jest": "27.1.5",
"typescript": "4.9.4",
"vue": "2.7.0",
"vue-template-compiler": "2.7.0",
"yorkie": "2.0.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"yarn lint",
"git add"
]
}
}