-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 1.79 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
{
"name": "@dewib/xhr-cache",
"version": "4.2.0",
"license": "MIT",
"description": "Cache api resources and serve it as static resource",
"contributors": [
"Gaetan SENN <gaetan.senn@gmail.com>"
],
"main": "lib/module.js",
"scripts": {
"dev": "nuxt test/fixture",
"coverage": "codecov",
"lint": "eslint lib test",
"test": "yarn lint && jest",
"release": "yarn test && standard-version && git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gaetansenn/xhr-cache.git"
},
"files": [
"lib"
],
"keywords": [
"nuxtjs",
"cache",
"ssr",
"api",
"static",
"faster"
],
"author": "Gaetan SENN (Dewib)",
"bugs": {
"url": "https://github.com/gaetansenn/xhr-cache/issues"
},
"homepage": "https://xhr-cache.dewib.com",
"publishConfig": {
"access": "public"
},
"dependencies": {
"axios": "^0.21.1",
"mkdirp": "^1.0.4",
"path": "^0.12.7",
"path-to-regexp": "^6.1.0",
"rimraf": "^5.0.0",
"uuid-apikey": "^1.4.6"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config": "latest",
"@nuxtjs/module-test-utils": "^1.6.1",
"babel-eslint": "latest",
"codecov": "latest",
"eslint": "latest",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "latest",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "latest",
"eslint-plugin-standard": "latest",
"eslint-plugin-vue": "latest",
"husky": "^4.2.5",
"jest": "^29.0.0",
"nuxt-edge": "latest",
"standard-version": "latest"
},
"engines": {
"node": ">=16.0.0"
}
}