UNPKG

937 BJSONView Raw
1{
2 "name": "@woubuc/seq",
3 "description": "Wraps an async (or other Promise returning) function to prevent it being executed in parallel",
4 "version": "1.0.0",
5 "license": "MIT",
6 "author": "Wouter Buckens <woubuc@hey.com>",
7 "main": "dist/seq.js",
8 "types": "dist/seq.d.ts",
9 "homepage": "https://github.com/woubuc/seq/blob/master/README.md",
10 "repository": "github:woubuc/seq",
11 "bugs": "https://github.com/woubuc/seq/issues",
12 "scripts": {
13 "build": "tsc",
14 "prepublishOnly": "tsc",
15 "test": "jest"
16 },
17 "dependencies": {
18 "@woubuc/deferred": "^1.1.0"
19 },
20 "devDependencies": {
21 "@types/jest": "^26.0.20",
22 "jest": "^26.6.3",
23 "ts-jest": "^26.4.4",
24 "typescript": "^4.1.3"
25 },
26 "files": [
27 "dist/**/*"
28 ],
29 "keywords": [
30 "promise",
31 "promises",
32 "async",
33 "await",
34 "parallel",
35 "sequential",
36 "sequence",
37 "once",
38 "single",
39 "debounce",
40 "limit"
41 ]
42}