-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.76 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.76 KB
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
81
82
83
84
85
86
87
88
{
"name": "@codejamboree/web-request-queue",
"version": "3.1.0",
"description": "Throttle web requests",
"type": "module",
"main": "dist/commonjs/index.min.cjs",
"types": "dist/commonjs/types/index.d.min.ts",
"module": "dist/commonjs/index.min.cjs",
"exports": {
".": {
"import": {
"types": "./dist/esm/types/index.d.min.mts",
"default": "./dist/esm/index.min.js"
},
"require": {
"types": "./dist/commonjs/types/index.d.min.ts",
"default": "./dist/commonjs/index.min.cjs"
}
},
"./production": {
"import": {
"types": "./dist/esm/types/index.d.min.mts",
"default": "./dist/esm/index.min.js"
},
"require": {
"types": "./dist/commonjs/types/index.d.min.ts",
"default": "./dist/commonjs/index.min.cjs"
}
},
"./development": {
"import": {
"types": "./dist/esm/types/index.d.mts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/types/index.d.ts",
"default": "./dist/commonjs/index.cjs"
}
}
},
"typesVersions": {
"*": {
"production": [
"dist/commonjs/types/index.d.min.ts"
],
"development": [
"dist/commonjs/types/index.d.ts"
]
}
},
"scripts": {
"clean": "rm -rf build && rm -rf dist",
"build": "npm run clean && tsc",
"bundle": "npm run build && npx rollup -c ./build/rollup.config.js",
"prepublishOnly": "npm run bundle",
"test": "npm run build && node ./build/scripts/test.js",
"sample:https": "npm run build && node ./build/scripts/sample-https.js",
"sample:queue:cb": "npm run build && node ./build/scripts/sample-queue-cb.js",
"sample:queue:promise": "npm run build && node ./build/scripts/sample-queue-promise.js",
"sample:queue:many": "npm run build && node ./build/scripts/sample-queue-many.js",
"sample:string": "npm run build && node ./build/scripts/sample-string.js",
"sample:file": "npm run build && node ./build/scripts/sample-file.js",
"sample:stream": "npm run build && node ./build/scripts/sample-stream.js",
"sample:json": "npm run build && node ./build/scripts/sample-json.js"
},
"keywords": [
"throttle",
"web",
"requests",
"queue"
],
"author": "Code Jamboree LLC",
"license": "MIT",
"devDependencies": {
"@codejamboree/js-logger": "^2.2.0",
"@codejamboree/js-test": "^2.4.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^22.5.4",
"rollup": "^4.21.2",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-license": "^3.5.2",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.7.0",
"typescript": "^5.5.4"
}
}