-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.1 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
43
44
45
46
47
{
"name": "tasqueue",
"version": "1.1.1",
"description": "Node.js job worker library using disque",
"author": "GitBook Team <contact@gitbook.com>",
"license": "Apache-2.0",
"main": "./lib/index.js",
"dependencies": {
"lodash": "4.3.0",
"q": "1.4.1",
"q-plus": "0.0.8",
"thunk-disque": "0.5.1"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"eslint": "^3.13.1",
"eslint-config-gitbook": "^1.5.0",
"expect": "^1.20.2",
"mocha": "^3.2.0"
},
"scripts": {
"prepublish": "babel --out-dir ./lib ./src",
"test": "node_modules/.bin/mocha --compilers js:babel-core/register --reporter spec --bail --timeout 15000"
},
"repository": {
"type": "git",
"url": "https://github.com/GitbookIO/node-tasqueue.git"
},
"bugs": {
"url": "https://github.com/GitbookIO/node-tasqueue/issues"
},
"contributors": [
{
"name": "Johan Preynat",
"email": "johan@gitbook.com"
}
],
"keywords": [
"node",
"disque",
"worker",
"task",
"queue"
]
}