-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.73 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
{
"name": "filter-bubble",
"version": "0.7.11",
"description": "Filter Bubble is a browser add-on/extension for Chrome and Firefox that enables you to hide content that you don't want to see on the web",
"author": "",
"repository": {
"type": "git",
"url": "git+https://github.com/andornaut/filter-bubble.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/andornaut/filter-bubble/issues"
},
"homepage": "https://github.com/andornaut/filter-bubble#readme",
"private": true,
"scripts": {
"build": "webpack --mode=development",
"build-production": "webpack --mode=production",
"format": "prettier-eslint --write \"**/*.{css,js,json,jsx,md}\"",
"package": "npm run build && web-ext build",
"package-production": "npm run build-production && rm -rf web-ext-artifacts/* && web-ext build",
"prepare": "husky",
"static-analysis": "eslint --ext .js,.jsx --max-warnings 0 .",
"web-ext": "npm run build && web-ext run",
"web-ext-android-firefox": "npm run build && web-ext run --target=firefox-android --android-device=$(adb devices 2>&1| awk '/./{device=$1} END{print device}') --verbose"
},
"dependencies": {
"lit-html": "^1.4.1",
"statezero": "^0.7.2"
},
"devDependencies": {
"clean-webpack-plugin": "~4.0.0",
"copy-webpack-plugin": "~12.0.2",
"eslint": "~7.32.0",
"eslint-config-airbnb-base": "~15.0.0",
"eslint-loader": "~4.0.2",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-import-order-alphabetical": "~1.0.1",
"eslint-plugin-sort-destructure-keys": "~2.0.0",
"husky": "~9.1.1",
"lint-staged": "~15.2.7",
"prettier-eslint-cli": "~8.0.1",
"web-ext": "~8.2.0",
"webpack": "~5.94.0",
"webpack-cli": "~5.1.4"
}
}