-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.28 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
{
"name": "sqs-delayed-notification",
"version": "0.0.1",
"description": "Amazon SQS wrapper for delayed notification that can be used for exponential back off for applicatins such as custom callbacks or webhooks",
"main": "dist/index.js",
"scripts": {
"start": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --ignore-path=.gitignore",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --ignore-path=.gitignore --fix",
"prepare": "husky install",
"build": "tsc",
"prepublish": "npm run build"
},
"keywords": [
"Amazon",
"SQS",
"webhook",
"callback",
"notification"
],
"author": "Apal Shah",
"license": "ISC",
"devDependencies": {
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
},
"dependencies": {
"aws-sdk": "^2.892.0"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}