forked from bbc/sqs-producer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.45 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
{
"name": "@allenzhong/sqs-producer",
"version": "0.0.3",
"description": "Enhanced tools that enqueues messages onto a given SQS queue",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage",
"posttest": "npm run lint",
"lint": "eslint . --ext .ts",
"build": "npm run clean && tsc",
"prepublish": "npm run build",
"pretest": "npm run build",
"watch": "tsc --watch",
"clean": "rm -fr dist/*"
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/allenzhong/sqs-producer.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/allenzhong/sqs-producer/issues"
},
"keywords": [
"aws",
"sqs",
"producer",
"queue"
],
"homepage": "https://github.com/allenzhong/sqs-producer",
"dependencies": {
"@aws-sdk/client-sqs": "^3.82.0"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "^27.4.1",
"@types/node": "^13.13.5",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"aws-sdk-client-mock": "^0.6.2",
"eslint": "^8.14.0",
"eslint-config-iplayer-ts": "^4.0.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"eslintConfig": {
"extends": "iplayer-ts",
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
}
}
}