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
|
{
"name": "https-everywhere",
"version": "1.0.0",
"description": "",
"main": "utils.js",
"devDependencies": {
"atob": "^2.0.3",
"btoa": "^1.1.2",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"codemirror": "~5.62.0",
"fetch-mock": "^9.10.7",
"mocha": "^9.0.0",
"nan": "^2.14.1",
"node-webcrypto-ossl": "^1.0.49",
"nyc": "^15.1.0",
"pako": "~2.0.2",
"sinon": "^11.1.1",
"sinon-chrome": "^3.0.1",
"text-encoding": "^0.7.0"
},
"scripts": {
"test": "mocha",
"cover": "nyc --reporter=html --reporter=text mocha",
"report": "nyc report --reporter=text-lcov | coveralls"
},
"nyc": {
"exclude": [
"external"
]
},
"keywords": [],
"author": "",
"license": "GPL-2.0+"
}
|