forked from jhurliman/node-rate-limiter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 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
{
"name": "limiter",
"description": "A generic rate limiter for the web and node.js. Useful for API clients, web crawling, or other tasks that need to be throttled",
"version": "2.1.0",
"author": "John Hurliman <[email protected]>",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"browser": "./dist/esm/index.js",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"repository": "git://github.com/jhurliman/node-rate-limiter",
"bugs": {
"url": "http://github.com/jhurliman/node-rate-limiter/issues"
},
"license": "MIT",
"files": [
"dist",
"src"
],
"scripts": {
"lint": "eslint --fix src",
"prepack": "yarn ttsc -p tsconfig.json && ttsc -p tsconfig.cjs.json",
"test": "jest src"
},
"dependencies": {
"just-performance": "4.3.0"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/babel__generator": "^7.6.2",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@zoltu/typescript-transformer-append-js-extension": "^1.0.1",
"babel-jest": "^26.6.3",
"eslint": "^7.25.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ttypescript": "^1.5.12",
"typescript": "^4.2.4"
},
"keywords": [
"rate",
"limiting",
"throttling"
]
}