-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 976 Bytes
/
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
{
"name": "@superhero/request",
"version": "2.3.8",
"description": "Wrapper for the http and https modules request function",
"repository": "[email protected]:superhero/js.request.git",
"main": "index.js",
"license": "MIT",
"keywords": [
"wrapper",
"http",
"https"
],
"author": {
"name": "Erik Landvall",
"email": "[email protected]",
"url": "http://erik.landvall.se"
},
"scripts": {
"prepublishOnly": "npm run-script generate-doc-coverage && npm run-script generate-doc-tests",
"generate-doc-coverage": "nyc report --reporter=html --report-dir=./docs/coverage",
"generate-doc-tests": "mocha 'test.js' --reporter mochawesome --reporter-options reportDir=docs/tests,reportFilename=index,showHooks=always",
"test": "nyc mocha 'test.js'"
},
"dependencies": {
"@superhero/debug": "1.1.13"
},
"devDependencies": {
"mocha": "5.1.0",
"mochawesome": "3.0.2",
"chai": "4.1.2",
"nyc": "11.7.1"
}
}