-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.04 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
72
73
74
75
76
77
78
79
80
{
"name": "promise-blocking-queue",
"version": "1.0.0",
"description": "Memory optimized promise blocking queue with concurrency control",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"engines": {
"node": ">=14"
},
"scripts": {
"clean": "rm -rf node_modules build coverage dist",
"build": "npm run lint && npm run buildDist",
"buildDist": "rm -rf dist/* && ./node_modules/.bin/tsc",
"test": "npm run lint && npm run mocha",
"mocha": "mocha --config test/.mocharc.json",
"cover": "nyc --reporter=lcov --reporter=text-summary mocha --config test/.mocharc.json",
"lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PruvoNet/promise-blocking-queue.git"
},
"files": [
"/dist/!(*.spec).d.ts",
"/dist/!(*.spec).js"
],
"keywords": [
"promise",
"queue",
"enqueue",
"limit",
"limited",
"concurrency",
"throttle",
"throat",
"rate",
"batch",
"ratelimit",
"priority",
"priorityqueue",
"fifo",
"job",
"task",
"async",
"await",
"promises",
"bluebird"
],
"author": "Regev Brody <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PruvoNet/promise-blocking-queue/issues"
},
"homepage": "https://github.com/PruvoNet/promise-blocking-queue#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.18",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"delay": "^6.0.0",
"dirty-chai": "^2.0.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^15.1.2",
"sinon-chai": "^3.7.0",
"sleep-promise": "^9.1.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.1.3"
},
"dependencies": {
"linked-list": "^2.1.0"
}
}