This repository has been archived by the owner on Aug 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.66 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
{
"name": "remotecacher",
"description": "RemoteCacher makes it simple to store remote data in your browser's native localStorage",
"keywords": [
"caching",
"browser-caching",
"localstorage",
"localstorage-caching",
"localstorage-interface",
"response-caching",
"local-caching"
],
"repository": {
"type": "git",
"url": "https://github.com/mikaelvesavuori/remotecacher.git"
},
"version": "1.0.5",
"author": "Mikael Vesavuori",
"main": "dist/remotecacher.js",
"license": "MIT",
"files": [
"dist/*"
],
"engines": {
"node": ">=6"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/runtime": "^7.11.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"core-js": "3.6.5",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-security": "^1.4.0",
"html-webpack-plugin": "^4.4.1",
"license-checker-webpack-plugin": "^0.1.5",
"prettier": "^2.1.2",
"prettier-eslint": "^11.0.0",
"regenerator-runtime": "^0.13.7",
"terser-webpack-plugin": "^4.2.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"dev": "webpack-dev-server --open --config webpack.dev.js --mode development",
"build": "webpack --config webpack.prod.js --mode production",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"snyk": true,
"dependencies": {
"snyk": "^1.398.1"
}
}