-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.77 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
{
"name": "sqs-reader",
"version": "1.2.0",
"description": "AWS SQS queue reader for Typescript",
"keywords": [
"sqs",
"aws",
"queue",
"typescript"
],
"homepage": "https://github.com/trevorr/sqs-reader#readme",
"bugs": {
"url": "https://github.com/trevorr/sqs-reader/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trevorr/sqs-reader.git"
},
"license": "ISC",
"author": "Trevor Robinson",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc --project src",
"lint": "eslint 'src/**/*.ts'",
"lint:ci": "eslint 'src/**/*.ts' --format junit --output-file test-results/eslint/eslint.xml",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"prettier": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"test": "nyc mocha 'test/**/*.test.ts'"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true
},
"nyc": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
},
"dependencies": {
"sleep-cancel": "^1.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"aws-sdk": "^2.867.0",
"chai": "^4.3.5",
"dotenv": "^14.3.2",
"eslint": "^8.7.0",
"mocha": "^9.2.0",
"mocha-junit-reporter": "^2.0.2",
"mocha-multi-reporters": "^1.5.1",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"peerDependencies": {
"aws-sdk": "^2.1063.0"
}
}