-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.07 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
{
"name": "@seneca/sqs-transport",
"version": "0.6.0",
"main": "dist/SqsTransport.js",
"type": "commonjs",
"types": "dist/SqsTransport.d.ts",
"description": "Local in-process que transport for Seneca messages. Use for local dev and testing.",
"homepage": "https://github.com/senecajs/seneca-sqs-transport",
"keywords": [
"seneca",
"transport",
"sqs",
"sqs-transport"
],
"author": "Richard Rodger - richardrodger.com",
"repository": {
"type": "git",
"url": "git://github.com/senecajs/seneca-sqs-transport.git"
},
"scripts": {
"prettier": "prettier --write .",
"test": "jest --coverage",
"test-some": "jest -t",
"test-watch": "jest --coverage --watchAll",
"watch": "tsc -w -d",
"build": "tsc -d",
"doc": "seneca-doc",
"clean": "rm -rf node_modules yarn.lock package-lock.json dist",
"reset": "npm run clean && npm i && npm run build && npm test && npm run doc",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish": "npm run clean && npm i && npm run repo-publish-quick",
"repo-publish-quick": "npm run build && npm run test && npm run doc && npm run repo-tag && npm publish --access public --registry https://registry.npmjs.org "
},
"license": "MIT",
"files": [
"dist",
"src/**/*.ts",
"LICENSE"
],
"engines": {
"node": ">=14"
},
"devDependencies": {
"@aws-sdk/client-sqs": "^3.592.0",
"@seneca/doc": "^8.0.0",
"@seneca/maintain": "^0.1.0",
"@types/async": "^3.2.24",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"esbuild": "^0.21.5",
"esbuild-jest": "^0.5.0",
"jest": "^29.7.0",
"prettier": "3.3.1",
"typescript": "^5.4.5"
},
"peerDependencies": {
"seneca": ">=3||>=4.0.0-rc2",
"seneca-entity": ">=26",
"seneca-promisify": ">=3",
"@seneca/gateway-lambda": ">=1.1",
"@seneca/gateway": ">=1.3"
},
"dependencies": {
"async": "^3.2.5"
}
}