-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.12 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
{
"name": "cookie-consent-popup-blocker",
"version": "1.2.2",
"description": "Browser extension that blocks “Before you continue” cookie consent popups on Google and YouTube",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .js",
"fix": "eslint . --ext .js --fix",
"test": "npm run dev",
"dist": "npm run build",
"dev": "set \"NODE_ENV=development\" && webpack",
"build": "set \"NODE_ENV=production\" && npm run lint && webpack "
},
"author": "DavG25",
"license" : "SEE LICENSE IN LICENSE",
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^8.1.1",
"css-minimizer-webpack-plugin": "^3.0.0",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.23.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"html-minimizer-webpack-plugin": "^2.1.0",
"json-minimizer-webpack-plugin": "^2.1.0",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.31.2",
"webpack-cli": "^4.6.0",
"zip-webpack-plugin": "^4.0.1"
}
}