-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.22 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.22 KB
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
{
"name": "eko-queue",
"author": "Andrew Weir <andrew@ekoapp.com>",
"version": "1.0.2",
"description": "EkoQueue is a queue manager that allows you to easily dispatch and process jobs with an easy to use interface.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha",
"server": "node server.js",
"lint": "./node_modules/.bin/jscs lib test examples index.js || true",
"fix": "./node_modules/.bin/jscs lib test examples index.js --fix || true",
"coverage": "./node_modules/.bin/istanbul cover _mocha",
"codacy": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage && rm -rf ./coverage"
},
"author": "",
"license": "ISC",
"dependencies": {
"bluebird": "^3.4.1",
"co": "^4.6.0",
"debug": "^2.2.0",
"kue": "^0.11.1",
"lodash": "^4.13.1",
"redis": "^2.6.2"
},
"devDependencies": {
"codacy-coverage": "^1.1.3",
"express": "^4.14.0",
"istanbul": "^0.4.4",
"jscs": "^3.0.7",
"kue-ui": "^0.1.0",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"should": "^10.0.0",
"should-sinon": "0.0.5",
"sinon": "^1.17.4"
}
}