-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 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
61
62
63
64
{
"name": "serverless-rate-limit",
"version": "1.2.0",
"description": "Rate limit your API's (or something else) using a combination centralized and decentralized data source",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "eslint src/ --ext .js,.ts,.jsx,.tsx",
"lint-fix": "eslint src/ --ext .js,.ts,.jsx,.tsx --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint-fix",
"preversion": "npm run lint-fix",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/admirkadriu/serverless-rate-limit.git"
},
"keywords": [
"serverless",
"lambda",
"rate-limit",
"DynamoDB"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/admirkadriu/serverless-rate-limit/issues"
},
"homepage": "https://github.com/admirkadriu/serverless-rate-limit#readme",
"dependencies": {
"@aws-sdk/client-dynamodb": "3.347.0",
"@aws-sdk/lib-dynamodb": "3.347.0",
"node-cache": "5.1.2"
},
"devDependencies": {
"@types/eslint": "6.1.3",
"@types/jest": "26.0.20",
"@types/node": "14.14.22",
"@typescript-eslint/eslint-plugin": "4.14.1",
"@typescript-eslint/parser": "4.3.0",
"eslint": "7.10.0",
"eslint-config-airbnb-typescript": "11.0.0",
"eslint-plugin-import": "2.22.1",
"jest": "26.6.3",
"ts-jest": "26.4.4",
"typescript": "4.1.3"
},
"files": [
"lib/**/*"
],
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"lib"
]
}
}