-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 948 Bytes
/
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
{
"name": "@tomkrcmar/lambda-router",
"description": "Abstract route modeling and matching framework with an implementation for AWS Lambda",
"version": "0.0.6",
"author": {
"name": "Thomas Krcmar",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/TomKrcmar/lambda-router.git"
},
"type": "module",
"module": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"build": "rollup -c",
"build:w": "rollup -c -w",
"test": "jest --coverage",
"test:w": "jest --coverage --watch"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.4",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/aws-lambda": "^8.10.109",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.9",
"jest": "^29.3.1",
"rollup": "^3.7.0",
"ts-jest": "^29.0.3",
"tslib": "^2.4.1",
"typescript": "^4.8.4"
}
}