-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.75 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
48
49
50
51
52
53
54
55
56
57
{
"name": "subtome",
"version": "4.0.0",
"description": "SubToMe makes it easy for people to follow web sites, because browsers don't do it.",
"author": {
"name": "Sören Hentzschel",
"email": "[email protected]",
"url": "https://firefox.agenedia.com"
},
"homepage": "https://www.soeren-hentzschel.at/firefox-webextensions/?utm_campaign=webext&utm_term=subtome",
"bugs": {
"email": "[email protected]"
},
"license": "MPL 2.0",
"repository": {
"type": "git",
"url": "https://github.com/cadeyrn/subtome"
},
"private": true,
"browserslist": [
"Firefox >= 109"
],
"devDependencies": {
"eslint": "8.34.0",
"eslint-plugin-compat": "4.1.1",
"eslint-plugin-no-unsanitized": "4.0.2",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-sort-requires": "2.1.0",
"eslint-plugin-xss": "0.1.12",
"gulp": "4.0.2",
"gulp-eslint-new": "1.7.2",
"gulp-htmllint": "0.0.19",
"gulp-jsdoc3": "3.0.0",
"gulp-stylelint": "13.0.0",
"htmllint": "0.8.0",
"jsdoc": "4.0.0",
"jsdoc-strip-async-await": "0.1.0",
"npm-run-all": "4.1.5",
"stylelint": "15.1.0",
"stylelint-csstree-validator": "2.1.0",
"stylelint-order": "6.0.2",
"web-ext": "7.5.0"
},
"scripts": {
"build": "cd src && web-ext build -a ../dist",
"docs": "gulp docs",
"lint": "npm-run-all lint:*",
"lint:html": "gulp lint-html",
"lint:js": "gulp lint-js",
"lint:css": "gulp lint-css",
"lint:webext": "cd src && web-ext lint",
"run:nightly": "cd src && web-ext run --firefox=nightly",
"run:beta": "cd src && web-ext run --firefox=beta",
"run:stable": "cd src && web-ext run --firefox=firefox",
"run:esr": "cd src && web-ext run --firefox=\"/Applications/Firefox ESR.app\""
}
}