-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.05 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
67
68
69
70
{
"name": "lambda-websocket-pubsub",
"version": "0.1.1",
"description": "a library for managing websocket communication for aws lambdas + api gateway in a pubsub way",
"author": "UladKasach @uladkasach",
"license": "MIT",
"repository": "uladkasach/lambda-websocket-pubsub",
"homepage": "https://github.com/uladkasach/lambda-websocket-pubsub",
"keywords": [
"aws",
"lambda",
"api",
"gateway",
"api gateway",
"websocket",
"websockets",
"dynamodb",
"subscription",
"publish",
"pubsub",
"topic"
],
"bugs": "https://github.com/uladkasach/lambda-websocket-pubsub/issues",
"main": "dist/contract/index.js",
"engines": {
"node": ">=8.0.0"
},
"files": [
"/dist"
],
"scripts": {
"clean": "rm -rf ./dist",
"build-ts": "tsc -p ./tsconfig.build.json",
"build": "npm run clean && npm run build-ts",
"check-types": "tsc --noEmit",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"unit-test": "jest --forceExit --coverage --verbose",
"integration-test": "jest -c jest.integration.config.js --coverage --verbose",
"test": "npm run check-types && npm run tslint && npm run unit-test && npm run integration-test",
"prepush": "npm run preversion",
"preversion": "npm run test && npm run build",
"postversion": "git push origin master --tags --no-verify",
"prepublish": "npm run build"
},
"devDependencies": {
"@pulumi/aws": "^1.0.0-beta.2",
"@pulumi/pulumi": "^1.0.0-beta.4",
"@types/aws-lambda": "^8.10.31",
"@types/aws-sdk": "^2.7.0",
"@types/dotenv": "^6.1.1",
"@types/jest": "^24.0.18",
"@types/joi": "^14.3.3",
"@types/uuid": "^3.4.5",
"dotenv": "^8.1.0",
"husky": "^1.3.1",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-consistent-codestyle": "^1.13.3",
"typescript": "^3.1.3",
"uuid": "^3.3.3"
},
"dependencies": {
"aws-lambda": "^0.1.2",
"aws-sdk": "^2.517.0",
"joi": "^14.3.1",
"schematic-joi-model": "^1.2.2"
}
}