-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.52 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
{
"name": "aws-websocket-handler",
"version": "1.0.0",
"description": "This module is created to handle AWS Lambda websocket actions as a one default handler",
"main": "dist/index.js",
"devDependencies": {
"@types/aws-lambda": "^8.10.66",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.14",
"@types/sinon": "^9.0.10",
"aws-sdk": "^2.809.0",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"sinon": "^9.2.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {},
"scripts": {
"build": "node_modules/.bin/tsc",
"test": "nyc mocha --require ts-node/register --require source-map-support/register --recursive test/*.ts",
"publish:patch": "npm run build && npm version patch && npm publish && git push --tags",
"publish:minor": "npm run build && npm version minor && npm publish && git push --tags",
"publish:major": "npm run build && npm version major && npm publish && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matrus2/aws-websocket-handler.git"
},
"keywords": [
"AWS",
"Lambda",
"Websocket",
"API Gateway"
],
"author": "Bogusz Przybyslawski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/matrus2/aws-websocket-handler.git"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
}
}