-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "refresh-helper-webpack-plugin",
"version": "0.1.4",
"description": "A webpack plugin that reminds the user of new release to refresh page",
"main": "lib/index.min.js",
"scripts": {
"babel": "babel src/index.js -o lib/index.js --compact --presets=@babel/preset-env",
"terser": "terser --compress --mangle -- lib/index.js > lib/index.min.js",
"build": "npm run babel && npm run terser"
},
"dependencies": {
"chalk": "^4.1.2",
"dayjs": "^1.11.6"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"terser": "^5.15.1"
},
"directories": {
"lib": "lib"
},
"keywords": [
"refresh helper"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mingmingwon/refresh-helper-webpack-plugin.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mingmingwon/refresh-helper-webpack-plugin/issues"
},
"homepage": "https://github.com/mingmingwon/refresh-helper-webpack-plugin#readme"
}