-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.7 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
{
"author": "WAAVI",
"name": "vue-wstorage",
"version": "1.0.0",
"description": "Vue.js plugin to manage localStorage and sessionStorage",
"license": "MIT",
"homepage": "https://waavi.com",
"repository": {
"type": "git",
"url": "git+https://github.com/Waavi/vue-wstorage"
},
"bugs": {
"url": "https://github.com/Waavi/vue-wstorage/issues"
},
"keywords": [
"vue",
"vuejs",
"vue-wstorage",
"localstorage",
"sessionstorage",
"storage"
],
"scripts": {
"test": "jest",
"lint": "eslint .",
"validate": "yarn test && yarn lint",
"prepublishOnly": "yarn validate"
},
"main": "src/index.js",
"unpkg": "dist/vue-wstorage.umd.min.js",
"jsDelivr": "dist/vue-wstorage.umd.min.js",
"files": [
"dist",
"src"
],
"jest": {
"setupFiles": [
"jest-localstorage-mock"
]
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"coveralls": "^3.0.6",
"eslint": "^5.8.0",
"eslint-plugin-vue-libs": "^4.0.0",
"jest": "^25.1.0",
"jest-localstorage-mock": "^2.4.0",
"lint-staged": "^8.1.4",
"vue": "^2.6.11",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-push": "yarn validate"
},
"dependencies": {
"babel-preset-es2015": "^6.24.1"
}
}