generated from senecajs/seneca-gateway
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.82 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
{
"name": "@seneca/gateway-express",
"version": "1.0.0",
"main": "dist/gateway-express.js",
"type": "commonjs",
"types": "dist/gateway-express.d.ts",
"description": "Handle incoming messages within express, defining an endpoint that accepts Seneca messages.",
"homepage": "https://github.com/senecajs/seneca-gateway-express",
"keywords": [
"gateway",
"express",
"seneca"
],
"author": "Richard Rodger - richardrodger.com",
"repository": {
"type": "git",
"url": "git://github.com/senecajs/seneca-gateway-express.git"
},
"scripts": {
"test": "jest --coverage",
"test-some": "jest -t",
"test-watch": "jest --coverage --watchAll",
"watch": "tsc -w -d",
"build": "tsc -d",
"clean": "rm -rf node_modules yarn.lock package-lock.json",
"reset": "npm run clean && npm i && npm run build && npm test",
"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 repo-tag && npm publish --access public --registry https://registry.npmjs.org "
},
"license": "MIT",
"files": [
"dist",
"src/**/*.ts",
"LICENSE"
],
"engines": {
"node": ">=12"
},
"devDependencies": {
"@seneca/maintain": "^0.1.0",
"@seneca/repl": "^9.1.0",
"@types/jest": "^29.5.12",
"esbuild": "^0.23.1",
"esbuild-jest": "^0.5.0",
"express": "^4.17.1",
"jest": "^29.7.0",
"seneca-msg-test": "^4.1.0",
"typescript": "^5.5.4"
},
"peerDependencies": {
"@seneca/gateway": ">=1.3.0",
"express": ">=4",
"seneca": ">=3||>=4.0.0-rc2",
"seneca-promisify": ">=3"
}
}