-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.44 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
{
"name": "@daanv2/queue-processor",
"version": "2.3.0",
"description": "A processor of collections that chunks the items into subsections. Each chunk is scheduled after when the previous chunk or item has been processed. This allows other workflows or scheduled work to execute before continuing on a large dataset. These processors try to keep the event loop as clean as possible.",
"main": "./lib/src/main.js",
"types": "./lib/src/main.d.ts",
"scripts": {
"compile": "tsc -b",
"build": "npm run clean && npm run compile",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"test": "mocha --debug-brk",
"clean": "rimraf lib",
"pretest": "npm run compile",
"prepublishOnly": "npm test",
"preversion": "",
"postversion": "git push && git push --tags",
"version": "git add -A src",
"watch": "tsc -w -p ./src"
},
"keywords": [
"promise",
"queue",
"processor"
],
"author": "DaanV2",
"license": "MIT",
"bugs": {
"url": "https://github.com/DaanV2/queue-processor/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DaanV2/queue-processor"
},
"homepage": "https://github.com/DaanV2/queue-processor#readme",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.1",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}