-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
104 lines (104 loc) · 2.6 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "squiss-ts",
"version": "5.5.1",
"description": "High-volume SQS poller",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "^18 || ^20 || ^22"
},
"scripts": {
"clean": "rm -rf .nyc_output coverage dist",
"build": "yarn lint && yarn compile",
"compile": "tsc",
"test": "yarn lint && yarn mocha",
"cover": "yarn clean && yarn nyc yarn mocha",
"lint": "eslint -c .eslintrc.js --ext .ts \"src/**/*.ts\"",
"benchmark": "tsc --extendedDiagnostics --incremental false",
"e2e:start": "docker compose -f e2e/docker-compose.yml up &",
"e2e:stop": "docker compose -f e2e/docker-compose.yml down &"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PruvoNet/squiss-ts.git"
},
"files": [
"/dist/*.d.ts",
"/dist/*.js"
],
"keywords": [
"aws",
"amazon",
"sqs",
"polling",
"poll",
"poller",
"queue",
"typescript",
"sns",
"s3",
"extended",
"client",
"sdk"
],
"author": "Regev Brody <regevbr@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/PruvoNet/squiss-ts/issues"
},
"homepage": "https://github.com/PruvoNet/squiss-ts#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.621.0",
"@aws-sdk/client-sqs": "^3.621.0",
"@aws-sdk/types": "^3.609.0",
"linked-list": "2.1.0",
"ts-type-guards": "^0.7.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.7",
"@types/node": "^18.19.42",
"@types/proxyquire": "^1.3.31",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"chai": "4.3.10",
"chai-as-promised": "7.1.1",
"delay": "5.0.0",
"dirty-chai": "^2.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.9.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mocha": "^10.7.0",
"nyc": "^17.0.0",
"proxyquire": "^2.1.3",
"sinon": "17.0.1",
"sinon-chai": "3.7.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": true,
"all": true,
"exclude": [
"src/test/**",
"e2e**",
"build**",
".eslintrc.js"
],
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
}
}