forked from sourcefuse/loopback4-ratelimiter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.22 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
{
"name": "@ruturaj-roxiler/loopback4-ratelimiter",
"version": "2.2.2",
"description": "A rate limiting extension for loopback-next APIs",
"keywords": [
"loopback-extension",
"loopback"
],
"main": "index.js",
"engines": {
"node": ">=8.9"
},
"scripts": {
"build": "npm run clean && lb-tsc",
"build:watch": "lb-tsc --watch",
"clean": "lb-clean dist *.tsbuildinfo",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run clean && npm run build",
"test": "echo \"No test specified\"",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"prepublishOnly": "npm run test && npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/ruturajmore/loopback4-ratelimiter"
},
"author": "",
"license": "MIT",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/boot": "^3.4.0",
"@loopback/context": "^3.16.0",
"@loopback/core": "^2.16.0",
"@loopback/repository": "^3.6.0",
"@loopback/rest": "^9.3.0",
"express-rate-limit": "^5.1.3",
"loopback-connector-kv-redis": "^4.0.0",
"rate-limit-redis": "^2.1.0"
},
"devDependencies": {
"@loopback/build": "^6.4.0",
"@loopback/eslint-config": "^10.2.0",
"@loopback/testlab": "^3.4.0",
"@types/express-rate-limit": "^5.0.0",
"@types/node": "^10.17.59",
"@types/rate-limit-redis": "^1.7.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-plugin": "^3.0.2",
"eslint-plugin-mocha": "^8.1.0",
"source-map-support": "^0.5.19",
"typescript": "~4.2.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}