-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.98 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.98 KB
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
{
"name": "@fgiova/mini-sns-client",
"version": "2.0.0",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.mts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"preBuild": "npm run clean",
"build": "esmBuilder",
"lint": "biome ci ./src ./test",
"fix": "biome check --write ./src ./test",
"test": "tap --timeout=90",
"test:debug": "tap --only --timeout=0",
"test:local": "TEST_LOCAL=true tap",
"test:local:debug": "TEST_LOCAL=true tap --only --timeout=0",
"test:coverage": "tap --timeout=90 --coverage-report=lcovonly --coverage-report=text"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fgiova/mini-sns-client.git"
},
"author": "Francesco Giovannini <fgiova@fgiova.com>",
"license": "MIT",
"keywords": [
"aws",
"sns",
"sns-client"
],
"publishConfig": {
"access": "public"
},
"tap": {
"show-full-coverage": true,
"before": "./test/scripts/executors/before.js",
"after": "./test/scripts/executors/teardown.js",
"exclude": [
"test/helpers/**/*",
"test/scripts/**/*"
]
},
"engines": {
"node": "^22.14.0 || >= 24.10.0"
},
"dependencies": {
"@fgiova/aws-signature": "^4.0.0",
"txml": "^5.1.1",
"undici": "^7.18.2"
},
"devDependencies": {
"@aws-sdk/client-sns": "^3.821.0",
"@aws-sdk/client-sqs": "^3.821.0",
"@biomejs/biome": "2.2.2",
"@fgiova/cjs-esm-ts-builder": "^1.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^13.1.4",
"@tsconfig/node22": "^22.0.5",
"@types/node": "^22.19.11",
"conventional-changelog-conventionalcommits": "^9.1.0",
"dotenv": "^16.5.0",
"semantic-release": "^25.0.3",
"tap": "^21.5.1",
"testcontainers": "^10.25.0",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
}
}