This repository has been archived by the owner on Jan 11, 2023. It is now read-only.
forked from bbc/sqs-consumer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.05 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "sqs-consumer",
"version": "5.4.0",
"description": "Build SQS-based Node applications without the boilerplate",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"watch": "tsc --watch",
"clean": "rm -fr dist/*",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "mocha --recursive --full-trace --exit",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --fix",
"coverage": "nyc mocha && nyc report --reporter=html && nyc report --reporter=json-summary",
"lcov": "nyc mocha && nyc report --reporter=lcov",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/BBC/sqs-consumer.git"
},
"bugs": {
"url": "https://github.com/BBC/sqs-consumer/issues"
},
"homepage": "https://github.com/BBC/sqs-consumer",
"keywords": [
"sqs",
"queue",
"consumer"
],
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/debug": "^4.1.5",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.13",
"@types/sinon": "^9.0.4",
"@types/typescript": "^2.0.0",
"chai": "^4.2.0",
"codeclimate-test-reporter": "^0.5.1",
"eslint": "^7.2.0",
"eslint-config-iplayer-ts": "^2.0.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"p-event": "^4.2.0",
"sinon": "^9.0.2",
"ts-node": "^8.10.2",
"tslint-config-airbnb": "^5.11.2",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.9.5",
"aws-sdk": "^2.699.0"
},
"dependencies": {
"debug": "^4.1.1"
},
"peerDependencies": {
"aws-sdk": "^2.699.0"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"sourceMap": true,
"instrument": true
},
"eslintConfig": {
"extends": "iplayer-ts",
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
}
},
"mocha": {
"spec": "test/**/**/*.ts",
"require": "ts-node/register"
}
}