-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.7 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
{
"name": "limited-request-queue",
"description": "Interactively manage concurrency for outbound requests.",
"version": "6.0.0",
"license": "MIT",
"author": "Steven Vachon <[email protected]> (https://svachon.com)",
"repository": "github:stevenvachon/limited-request-queue",
"exports": {
".": {
"import": "./lib/index.mjs",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"browser": "lib-es5",
"dependencies": {
"isurl": "^4.0.1",
"parse-domain": "^3.0.3"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.1",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"@babel/preset-env": "^7.13.5",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"c8": "^7.6.0",
"chai": "^4.3.0",
"coveralls": "^3.1.0",
"gzip-size-cli": "^4.0.0",
"mocha": "^8.3.0",
"terser": "^5.6.0"
},
"engines": {
"node": ">= 14"
},
"scripts": {
"build": "babel lib/ --extensions=.js --out-dir=lib-es5/ --plugins=@babel/proposal-class-properties,@babel/proposal-private-methods --presets=@babel/env --source-maps",
"ci": "npm test && c8 report --reporter=text-lcov | coveralls",
"posttest": "c8 report --reporter=text-summary --reporter=html && npm run build --silent && browserify lib-es5/ --standalone=RequestQueue | terser --compress --mangle | gzip-size",
"prepublishOnly": "npm test",
"test": "c8 mocha test/ --check-leaks --bail"
},
"files": [
"lib",
"lib-es5"
],
"keywords": [
"background",
"concurrency",
"DoS",
"http",
"limiting",
"queue",
"rate",
"request",
"throttle"
]
}