-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 992 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
{
"name": "workerjs-httpclient",
"version": "0.0.8",
"description": "HTTP middleware for WorkerJS. ",
"main": "index.js",
"repository": "https://github.com/workerJS/workerjs-httpclient.git",
"author": "nemanjan00 <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"lint": "./node_modules/.bin/eslint . --fix",
"test": "./node_modules/.bin/mocha --reporter spec --timeout 60000 tests/index.js",
"coverage": "./node_modules/.bin/nyc ./node_modules/.bin/mocha --reporter spec --timeout 60000 tests/index.js",
"watch-cli": "nodemon -I ./index.js",
"start": "node ./"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"express-swagger-generator": "^1.1.11",
"request": "^2.88.0",
"workerjs-client": "^2.0.3"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.10.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.9",
"nyc": "^13.1.0"
}
}