forked from mozilla-extensions/secure-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.32 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.32 KB
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
{
"name": "secure-proxy",
"version": "1.0.0",
"description": "An extension to enable a proxy within Firefox.",
"main": ".",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "cp node_modules/fxa-crypto-relier/dist/fxa-crypto-relier/fxa-crypto-relier.js src/vendor/",
"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'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"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",
"dependencies": {
"fxa-crypto-relier": "^2.7.0"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^6.0.1",
"eslint-plugin-fetch-options": "^0.0.5",
"eslint-plugin-mozilla": "^1.3.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-no-unsanitized": "^3.0.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-verify-await": "git@github.com:jonathanKingston/eslint-plugin-verify-await.git",
"prettier": "^1.18.2"
}
}