forked from superwf/vuex-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.99 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": "vuex-cache",
"version": "3.4.0",
"description": "Cache dispatched actions and prevent repeated requests and heavy actions.",
"cdn": "dist/vuex-cache.umd.min.js",
"main": "dist/vuex-cache.js",
"types": "types/vuex-cache.d.ts",
"unpkg": "dist/vuex-cache.umd.min.js",
"module": "dist/vuex-cache.es.js",
"jsdelivr": "dist/vuex-cache.umd.min.js",
"umd:main": "dist/vuex-cache.umd.js",
"repository": "superwf/vuex-cache",
"author": "superwf@gmail.com",
"contributors": [
{
"url": "https://vitorluizc.github.io/",
"name": "Vitor Luiz Cavalcanti",
"email": "vitorluizc@outlook.com"
}
],
"license": "MIT",
"homepage": "https://github.com/superwf/vuex-cache",
"files": [
"dist/",
"types/"
],
"scripts": {
"test": "jest",
"cover": "jest --coverage",
"lint": "eslint src/vuex-cache.js",
"build": "bili src/vuex-cache.js --format es,cjs,umd,umd-min --module-name VuexCache --minimal",
"prepublishOnly": "yarn lint && yarn build && yarn cover"
},
"keywords": [
"vuex",
"vuex-plugin",
"cache",
"cache-actions"
],
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.0",
"@babel/runtime": "^7.14.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"bili": "^5.0.5",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"vue": "^2.6.12",
"vuex": "^3.6.2"
},
"jest": {
"collectCoverageFrom": [
"src/vuex-cache.js"
],
"testMatch": [
"<rootDir>/__test__/*.test.js"
],
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}