This repository has been archived by the owner on Jun 4, 2022. It is now read-only.
forked from bbc/sqs-consumer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.71 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
{
"name": "@parcellab/sqs-consumer",
"version": "5.4.2",
"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",
"lint": "tslint --project tsconfig.json",
"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/parcellab/sqs-consumer.git"
},
"bugs": {
"url": "https://github.com/parcellab/sqs-consumer/issues"
},
"homepage": "https://github.com/parcellab/sqs-consumer",
"keywords": [
"sqs",
"queue",
"consumer"
],
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/debug": "^4.1.3",
"@types/mocha": "^2.2.43",
"@types/node": "^10.12.18",
"@types/sinon": "^4.0.0",
"@types/typescript": "^2.0.0",
"chai": "^4.2.0",
"codeclimate-test-reporter": "^0.5.1",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"p-event": "^2.1.0",
"sinon": "^7.2.2",
"ts-node": "^3.3.0",
"tslint": "^5.17.0",
"tslint-config-airbnb": "^5.3.1",
"tslint-microsoft-contrib": "^5.0.3",
"typescript": "^2.6.1"
},
"dependencies": {
"aws-sdk": "^2.443.0",
"debug": "^4.1.1"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"sourceMap": true,
"instrument": true
}
}