-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 887 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 887 Bytes
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
{
"name": "workerjs-queue",
"version": "0.0.1",
"description": "Definition of queue interface, tests and queue provider. ",
"main": "index.js",
"repository": "git@github.com:workerJS/workerjs-queue.git",
"author": "nemanjan00 <nemanjan00@gmail.com>",
"license": "MIT",
"private": false,
"dependencies": {},
"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"
},
"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",
"workerjs-rabbitmq": "^0.0.4",
"workerjs-redis": "^2.0.7"
}
}