-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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": "hique",
"version": "1.1.4",
"description": "job queue for nodejs",
"main": "index.js",
"scripts": {
"test": "mocha test --recursive",
"test-watch": "mocha test --recursive --watch",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha",
"coverage-travis": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "/~https://github.com/patriceperez/hique.git"
},
"keywords": [
"queue",
"job",
"worker",
"distributed"
],
"author": "Patrice Perez <perezpatrice@gmail.com>",
"contributors": [
{
"name": "Patrice Perez",
"email": "perezpatrice@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "/~https://github.com/patriceperez/hique/issues"
},
"homepage": "/~https://github.com/patriceperez/hique#readme",
"dependencies": {
"async": "^2.1.5",
"lodash": "^4.13.1",
"socket.io": "^1.7.2",
"socket.io-client": "^1.4.8"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.11",
"mocha": "^2.5.3",
"istanbul": "^0.4.3",
"mocha-lcov-reporter": "^1.2.0"
}
}