-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "typebridge",
"repository": {
"type": "git",
"url": "https://github.com/fredericbarthelet/typebridge"
},
"version": "1.2.0",
"description": "Typescript toolbox for AWS EventBridge",
"main": "dist/index.js",
"author": "Frédéric Barthelet",
"license": "MIT",
"sideEffects": false,
"scripts": {
"build": "rm -rf dist && tsc -d",
"lint": "eslint '**/*.ts'",
"lint:fix": "eslint '**/*.ts' --fix",
"watch": "tsc -w",
"type": "tsc --noEmit",
"test": "jest --runInBand"
},
"dependencies": {
"ajv": "^6.12.6",
"json-schema-to-ts": "^2.5.5"
},
"devDependencies": {
"@aws-sdk/client-eventbridge": "^3.50.0",
"@middy/core": "^1.4.0",
"@middy/validator": "^1.5.0",
"@types/aws-lambda": "^8.10.64",
"@types/http-errors": "^1.8.2",
"@types/jest": "^27.4.0",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"aws-lambda-mock-context": "^3.2.1",
"aws-sdk-client-mock": "^0.5.6",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-prettier": "^4.0.0",
"http-errors": "^1.8.0",
"jest": "^27.5.1",
"prettier": "^2.2.0",
"ts-jest": "^27.1.3",
"typescript": "^4.0.5"
}
}