-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.71 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
{
"name": "disable-animated-images",
"version": "1.0.0",
"description": "Disable Animated Images allows you to disable animated images on websites.",
"author": {
"name": "Sören Hentzschel",
"email": "[email protected]",
"url": "https://agenedia.com"
},
"homepage": "https://www.soeren-hentzschel.at/firefox-webextensions/disable-animated-images/",
"bugs": {
"email": "[email protected]"
},
"license": "MPL 2.0",
"repository": {
"type": "git",
"url": "https://github.com/cadeyrn/disable-animated-images/"
},
"private": true,
"browserslist": [
"Firefox >= 57"
],
"devDependencies": {
"eslint": "4.6.1",
"eslint-plugin-compat": "1.0.4",
"eslint-plugin-no-unsanitized": "2.0.1",
"eslint-plugin-sort-requires": "2.1.0",
"eslint-plugin-xss": "0.1.8",
"gulp": "3.9.1",
"gulp-eslint": "4.0.0",
"gulp-html-lint": "0.0.2",
"gulp-jsdoc3": "1.0.1",
"gulp-stylelint": "5.0.0",
"htmllint": "0.6.0",
"jsdoc": "3.5.4",
"jsdoc-strip-async-await": "0.1.0",
"npm-run-all": "4.1.1",
"stylelint": "8.1.1",
"stylelint-csstree-validator": "1.2.0",
"stylelint-order": "0.6.0",
"web-ext": "2.0.0"
},
"scripts": {
"build": "cd src && web-ext build -a ../dist",
"docs": "gulp docs",
"lint": "npm-run-all lint:*",
"lint:js": "gulp lint-js",
"lint:css": "gulp lint-css",
"lint:html": "gulp lint-html",
"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\""
}
}