forked from cadeyrn/bookmarks-organizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.95 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": "bookmarkchecker",
"version": "3.1.0",
"description": "With the Bookmarks Organizer it's easy to put order in your bookmarks. The Bookmarks Organizer finds no longer working bookmarks, redirects, duplicates and more!",
"author": {
"name": "Sören Hentzschel",
"email": "[email protected]",
"url": "https://agenedia.com"
},
"homepage": "https://www.soeren-hentzschel.at/firefox-webextensions/bookmarks-organizer/?utm_campaign=webext&utm_term=bookmarksorganizer",
"bugs": {
"email": "[email protected]"
},
"license": "MPL 2.0",
"repository": {
"type": "git",
"url": "https://github.com/cadeyrn/bookmarks-organizer/"
},
"private": true,
"browserslist": [
"Firefox >= 60"
],
"devDependencies": {
"eslint": "5.12.1",
"eslint-plugin-compat": "2.6.3",
"eslint-plugin-no-unsanitized": "3.0.2",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-sort-requires": "2.1.0",
"eslint-plugin-xss": "0.1.9",
"gulp": "4.0.0",
"gulp-eslint": "5.0.0",
"gulp-htmllint": "0.0.16",
"gulp-jsdoc3": "2.0.0",
"gulp-stylelint": "8.0.0",
"htmllint": "0.7.3",
"jsdoc": "3.5.5",
"jsdoc-strip-async-await": "0.1.0",
"npm-run-all": "4.1.5",
"stylelint": "9.10.1",
"stylelint-csstree-validator": "1.3.0",
"stylelint-order": "2.0.0",
"web-ext": "2.9.3"
},
"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=\"/Applications/Firefox Nightly.app\"",
"run:beta": "cd src && web-ext run --firefox=\"/Applications/Firefox Beta.app\"",
"run:stable": "cd src && web-ext run --firefox=\"/Applications/Firefox Stable.app\"",
"run:esr": "cd src && web-ext run --firefox=\"/Applications/Firefox ESR.app\""
}
}