-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.65 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
{
"name": "@fgiova/mini-sqs-client",
"version": "3.0.1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/esm-wrapper.mjs",
"require": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "gen-esm-wrapper . dist/esm-wrapper.mjs",
"lint": "eslint 'src/**/*.ts'",
"test": "tap",
"test:esm": "npm run build && tap test-esm/",
"test:debug": "tap --only --timeout=0",
"simpletest": "ts-node simpletest.ts",
"test:coverage": "tap --coverage-report=lcovonly --coverage-report=text"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fgiova/mini-sqs-client.git"
},
"author": "Francesco Giovannini <[email protected]>",
"license": "MIT",
"keywords": [
"aws",
"sqs",
"sqs-client"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
},
"tap": {
"show-full-coverage": true
},
"dependencies": {
"@fgiova/aws-signature": "^3.0.0",
"undici": "^7.4.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.17.24",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"gen-esm-wrapper": "^1.1.3",
"semantic-release": "^24.2.3",
"tap": "^21.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}