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
|
{
"name": "https-everywhere",
"version": "1.0.0",
"description": "",
"main": "utils.js",
"dependencies": {},
"devDependencies": {
"atob": "^2.0.3",
"btoa": "^1.1.2",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"fetch-mock": "^6.3.0",
"mocha": "^4.1.0",
"nan": "^2.10.0",
"node-webcrypto-ossl": "^1.0.48",
"nyc": "^14.1.1",
"sinon": "^4.4.8",
"sinon-chrome": "^2.3.1",
"text-encoding": "^0.6.4"
},
"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+"
}
|