-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
44 lines (44 loc) · 981 Bytes
/
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
{
"name": "bobolink",
"version": "3.0.0",
"description": "an intelligently scheduled task pool",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha",
"cov:local": "nyc npm test",
"cov:nyc": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/blurooo/bobolink.git"
},
"keywords": [
"queue",
"task",
"schedule",
"concurrency",
"job",
"async",
"pool",
"partaker",
"bobolink",
"js-queue"
],
"author": {
"name": "blurooo",
"email": "me@blurooo.com",
"url": "https://github.com/blurooo/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/blurooo/bobolink/issues"
},
"homepage": "https://github.com/blurooo/bobolink#readme",
"devDependencies": {
"coveralls": "^3.0.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1"
},
"dependencies": {}
}