-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.27 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.27 KB
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
{
"name": "@tyba-co/aws-lambda-router",
"version": "0.12.1",
"description": "AWS lambda router",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"prepare": "npm run build",
"build:types": "tsc --emitDeclarationOnly",
"test": "yarn clean && jest --coverage",
"build": "tsc",
"clean": "rm -f lib/*.d.ts lib/*.js index.js index.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tyba-co/aws-lambda-router-fork.git"
},
"keywords": [
"aws",
"lambda",
"apigateway",
"any",
"sns",
"router",
"routing",
"s3"
],
"author": "Christian Gohlke <christian.gohlke@axelspringer.com> (https://www.welt.de)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tyba-co/aws-lambda-router-fork/issues"
},
"homepage": "https://github.com/tyba-co/aws-lambda-router-fork#readme",
"devDependencies": {
"@types/jest": "26.0.23",
"@types/node": "^8.10.59",
"codecov": "3.8.2",
"jest": "26.6.3",
"ts-jest": "26.5.6",
"typescript": "4.2.4",
"yarn": "^1.22.22"
},
"dependencies": {
"@types/aws-lambda": "8.10.66"
},
"publishConfig": {
"@tyba-co:registry": "https://npm.pkg.github.com"
},
"directories": {
"lib": "lib",
"test": "test"
}
}