This repository has been archived by the owner on Jun 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
45 lines (45 loc) · 1.5 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
{
"name": "secure-proxy",
"version": "26.0.0",
"description": "An extension to enable a proxy within Firefox.",
"main": ".",
"directories": {
"doc": "docs"
},
"scripts": {
"lint": "eslint src",
"md": "npm run md:lint && npm run md:spell",
"md:lint": "npx markdownlint-cli '*.md' 'docs/*.md'",
"md:spell": "npx markdown-spellcheck -a -n -x --en-us '*.md' 'docs/*.md'",
"build": "web-ext build --filename secure-proxy.xpi",
"start": "web-ext run --verbose --pref devtools.console.stdout.chrome=true --pref devtools.console.stdout.content=true",
"test": "echo \"Error: testing disabled\" && exit 0",
"experimentaltests": "./test/fix_dependencies.sh && mocha ./test --no-deprecation"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla/secure-proxy.git"
},
"author": "Mozilla Developers",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla/secure-proxy/issues"
},
"homepage": "https://github.com/mozilla/secure-proxy#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-fetch-options": "^0.0.5",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-mozilla": "^2.9.2",
"eslint-plugin-no-unsanitized": "^3.1.4",
"eslint-plugin-prettier": "^3.3.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^8.2.1",
"prettier": "^1.19.1",
"selenium-webdriver": "^4.0.0-alpha.8",
"web-ext": "^5.4.1"
}
}