-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
{
"name": "@smart-chain-fr/asyncbatch",
"version": "1.1.7",
"description": "Asynchronously process task batches",
"main": "lib/main.js",
"types": "lib/main.d.ts",
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm test",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"start": "node ./lib/main.js",
"example-start-basic": "node ./lib/examples/basic.js",
"build": "tsc",
"dev": "tsc && npm run start",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest --config jestconfig.json",
"example-basic": "tsc && node ./lib/examples/basic.js",
"example-pagination": "tsc && node ./lib/examples/pagination.js",
"example-generators": "tsc && node ./lib/examples/generators.js"
},
"files": [
"lib/**/*"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"batch",
"async",
"processing",
"concurrency",
"rate-limiting",
"queue",
"utility",
"automation",
"async-action",
"data-processing",
"async-operations",
"throttle",
"await",
"promise",
"promises",
"limited",
"limit"
],
"repository": {
"type": "git",
"url": "git+https://github.com/smart-chain-fr/asyncbatch.git"
},
"author": "Team smart-chain",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.2",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"tslib": "^2.5.3",
"typescript": "^5.1.3"
},
"dependencies": {}
}