-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.33 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
{
"name": "el-borracho",
"version": "2.3.0",
"description": "Express 4 router containing a REST and SSE API for Bull job queues",
"main": "lib/el-borracho.js",
"scripts": {
"test": "npm run test:modules && npm run test:coverage",
"test:modules": "mocha --recursive --compilers coffee:iced-coffee-script/register --require test/iced-coffee-coverage test/",
"test:coverage": "istanbul report",
"build": "iced --bare --map --runtime node -o lib/ -c src/*",
"watch": "iced --watch --bare --map --runtime node -o lib/ -c src/*",
"start": "node lib/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nextorigin/el-borracho.git"
},
"keywords": [
"bull"
],
"author": "doublerebel",
"license": "MIT",
"bugs": {
"url": "https://github.com/nextorigin/el-borracho/issues"
},
"homepage": "https://github.com/nextorigin/el-borracho",
"dependencies": {
"bull": "^2.0.0",
"errify": "^1.0.0",
"express": "^4.14.0",
"iced-runtime": "^1.0.3",
"method-override": "^2.3.7",
"sseries-of-tubes": "^2.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"iced-coffee-coverage": "^1.0.21",
"iced-coffee-script": "^108.0.11",
"ioredis": "^2.4.2",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"sinon": "^1.17.6"
}
}