-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.27 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
{
"name": "dimmer",
"version": "3.2.0",
"description": "A browser extension to dim web pages",
"main": "index.js",
"scripts": {
"build": "web-ext build --overwrite-dest -i \"*.code-workspace\" package.json README.md yarn.lock \"**-profile\" demo.gif _config.yml",
"dev": "env-cmd -x --use-shell web-ext run -u https://wikipedia.com --verbose --firefox-profile=\"\\$LIGHT_MODE_PROFILE\"",
"dev-dark": "env-cmd -x web-ext run --verbose -u https://wikipedia.com --firefox-profile=\"\\$DARK_MODE_PROFILE\"",
"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 <mehmetb_dev@pm.me> (https://mehmetb.github.io)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mehmetb/dimmer/issues"
},
"homepage": "https://github.com/mehmetb/dimmer#readme",
"devDependencies": {
"env-cmd": "^10.1.0",
"eslint": "latest",
"eslint-config-airbnb-base": "latest",
"eslint-plugin-import": "latest",
"web-ext": "latest"
}
}