forked from cadeyrn/enterprise-policy-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.86 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": "enterprise-policy-generator",
"version": "5.0.0",
"description": "Generates Enterprise Policies for Firefox.",
"author": {
"name": "Sören Hentzschel",
"email": "kontakt@agenedia.com",
"url": "https://agenedia.com"
},
"homepage": "https://www.soeren-hentzschel.at/firefox-webextensions/enterprise-policy-generator/?utm_campaign=webext&utm_term=enterprise",
"bugs": {
"email": "kontakt@agenedia.com"
},
"license": "MPL 2.0",
"repository": {
"type": "git",
"url": "https://github.com/cadeyrn/enterprise-policy-generator/"
},
"private": true,
"browserslist": [
"Firefox >= 68"
],
"devDependencies": {
"eslint": "6.8.0",
"eslint-plugin-compat": "3.3.0",
"eslint-plugin-no-unsanitized": "3.0.2",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-sort-requires": "2.1.0",
"eslint-plugin-xss": "0.1.9",
"gulp": "4.0.2",
"gulp-eslint": "6.0.0",
"gulp-htmllint": "0.0.16",
"gulp-jsdoc3": "2.0.0",
"gulp-stylelint": "11.0.0",
"htmllint": "0.8.0",
"jsdoc": "3.6.3",
"jsdoc-strip-async-await": "0.1.0",
"npm-run-all": "4.1.5",
"stylelint": "12.0.1",
"stylelint-csstree-validator": "1.7.0",
"stylelint-order": "3.1.1",
"web-ext": "4.0.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=\"/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\""
}
}