-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "seneca-queue",
"version": "0.3.0",
"description": "A multi-transport job queue for Seneca",
"author": "Matteo Collina <[email protected]>",
"contributors": [
"Paolo Chiodi (https://github.com/paolochiodi)"
],
"license": "MIT",
"main": "./lib/queue.js",
"scripts": {
"test": "lab test/*.test.js -r console -v -L -m 3000 -c -t 90",
"coverage": "lab -s test/*.test.js -r lcov | coveralls",
"lint": "lab -dL"
},
"keywords": [
"seneca",
"job",
"queue",
"task",
"async"
],
"homepage": "https://github.com/senecajs-labs/seneca-queue",
"repository": {
"type": "git",
"url": "https://github.com/senecajs-labs/seneca-queue.git"
},
"bugs": {
"url": "https://github.com/senecajs-labs/seneca-queue/issues"
},
"dependencies": {
"async": "^1.5.0",
"lodash": "^3.2.0"
},
"devDependencies": {
"code": "1.x.x",
"coveralls": "^2.11.6",
"eslint-config-seneca": "1.x.x",
"eslint-plugin-hapi": "2.x.x",
"eslint-plugin-standard": "1.x.x",
"lab": "^6.2.0",
"seneca": "plugin"
}
}