-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
executable file
·71 lines (71 loc) · 2.1 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "rethinkdb-job-queue",
"version": "3.1.7",
"description": "A persistent job or task queue backed by RethinkDB.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/grantcarthew/node-rethinkdb-job-queue.git"
},
"keywords": [
"job",
"jobs",
"queue",
"task",
"tasks",
"rethinkdb",
"asynchronous",
"async",
"background",
"long",
"running",
"service",
"distributed",
"worker",
"processing"
],
"author": "Grant Carthew",
"license": "MIT",
"bugs": {
"url": "https://github.com/grantcarthew/node-rethinkdb-job-queue/issues"
},
"homepage": "https://github.com/grantcarthew/node-rethinkdb-job-queue",
"scripts": {
"prepublish": "npm run build",
"clean": "rm -Rf dist",
"build": "npm run clean && babel src --presets babel-preset-latest --out-dir dist",
"test": "tap --timeout 10000 ./tests/*.spec.js",
"tv": "tap --timeout 10000 --reporter tap ./tests/*.spec.js",
"lint": "standard",
"coverage": "npm run coverage:rm && npm run coverage:cover && npm run coverage:report && npm run coverage:check",
"coverage:cover": "istanbul cover tap -- --timeout 10000 ./tests/*.spec.js",
"coverage:rm": "rm -Rf coverage",
"coverage:report": "istanbul report",
"coverage:check": "istanbul check-coverage ../site-rjq-coverage/coverage.json",
"upgrade": "npm run upgrade:rm && npm run upgrade:ncu && npm run upgrade:install && npm run upgrade:finish",
"upgrade:rm": "rm -Rf node_modules",
"upgrade:ncu": "npm-check-updates --upgradeAll",
"upgrade:install": "npm install",
"upgrade:finish": "npm run build"
},
"standard": {
"ignore": "dist"
},
"dependencies": {
"bluebird": "^3.5.1",
"debug": "^3.1.0",
"rethinkdbdash": "^2.3.31",
"serialize-error": "^2.1.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"istanbul": "0.4.5",
"npm-check-updates": "^2.14.0",
"proxyquire": "^1.8.0",
"standard": "^11.0.0",
"tap": "^11.1.1",
"tap-spec": "^4.1.1"
}
}