-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.11 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": "dimmer",
"version": "2.0.0",
"description": "A browser extension to dim web pages",
"main": "index.js",
"scripts": {
"build": "web-ext build --overwrite-dest -i package.json README.md yarn.lock dark-mode demo.gif _config.yml",
"dev": "web-ext run --verbose -u https://mehmetbaker.dev",
"dev-dark": "web-ext run --verbose -u https://mehmetbaker.dev -p dark-mode/",
"lint": "eslint content_scripts/*.js popup/*.js background.js",
"lint-fix": "eslint --fix content_scripts/*.js popup/*.js background.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mehmetb/dimmer.git"
},
"keywords": [
"dark",
"overlay"
],
"author": "Mehmet Baker <mehmet@mehmetbaker.dev> (https://mehmetbaker.dev)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mehmetb/dimmer/issues"
},
"homepage": "https://github.com/mehmetb/dimmer#readme",
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "*",
"eslint-plugin-import": "*",
"web-ext": "^6.1.0"
}
}