-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.12 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.12 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
38
39
40
41
42
43
44
{
"name": "disque-worker",
"version": "0.0.1",
"description": "Node.js Disque worker",
"main": "index.js",
"directories": {
"test": "Testing scripts",
"example": "Some example",
"lib": "Source code"
},
"dependencies": {
"bluebird": "^2.9.30",
"coveralls": "~2.11.2",
"mocha-lcov-reporter": "0.0.2",
"redis": "~0.12.1"
},
"devDependencies": {
"chai": "~2.3.0",
"jscover": "~1.0.0",
"jscs": "~1.13.1",
"jshint": "^2.8.0",
"mitm": "^1.1.0",
"mocha": "~2.2.5"
},
"scripts": {
"pretest": "jshint lib/ && jscs lib/",
"test": "mocha",
"coverage": "mkdir -p coverage; node_modules/.bin/jscover lib lib-cov; JSCOV=1 mocha -R mocha-lcov-reporter > coverage/coverage_temp.lcov; sed 's,SF:,SF:lib/,' coverage/coverage_temp.lcov > coverage/coverage.lcov"
},
"repository": {
"type": "git",
"url": "git://github.com/robinef/disque-worker.git"
},
"keywords": [
"Node.js",
"Disque",
"Worker"
],
"author": "Frederic ROBINET <robinef@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/robinef/disque-worker/issues"
}
}