-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.47 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.47 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
{
"name": "aws-lambda-curry",
"version": "0.2.4",
"description": "",
"main": "./lib/index.js",
"files": [
"lib",
"!**/*/__tests__"
],
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint-fix": "eslint . --ext .{js,ts} --fix",
"prettier": "prettier --config .prettierrc.js --write ./**/*.{js,json,md,ts,yml}",
"test": "NODE_ENV=test jest --runInBand --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnyherangi/aws-lambda-curry.git"
},
"bugs": {
"url": "https://github.com/johnyherangi/aws-lambda-curry/issues"
},
"homepage": "https://github.com/johnyherangi/aws-lambda-curry#readme",
"keywords": [],
"author": "Johny Herangi",
"license": "ISC",
"devDependencies": {
"@types/aws-lambda": "^8.10.117",
"@types/jest": "^29.5.2",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
}
}