-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 KB
/
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
34
35
36
37
38
39
40
41
42
{
"name": "featureless-job-queue",
"version": "2.0.2",
"description": "Very basic job queue focusing on performance for high throughput",
"main": "lib/index.js",
"scripts": {
"test": "NODE_ENV=test mocha --recursive -t 5000 test/ --reporter ${MOCHA_REPORTER:-spec}",
"coverage": "NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha -- --recursive -t 5000 test/ --reporter ${MOCHA_REPORTER:-spec}",
"lint": "jshint lib/ test/ examples/",
"style": "jscs ."
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/Neamar/featureless-job-queue.git"
},
"author": "Neamar",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/Neamar/featureless-job-queue/issues"
},
"homepage": "/~https://github.com/Neamar/featureless-job-queue#readme",
"dependencies": {
"async": "^2.1.2",
"auto-load": "^2.1.0",
"debug": "^2.2.0",
"rarity": "^2.1.1",
"redis": "^2.6.5"
},
"devDependencies": {
"istanbul": "^0.4.5",
"jscs": "^3.0.7",
"jshint": "^2.9.1",
"mocha": "^3.1.2",
"mocha-junit-reporter": "^1.12.1",
"nock": "^7.2.2",
"sinon": "^1.17.4",
"supertest": "^2.0.1"
},
"engines": {
"node": ">=6.0.0"
}
}