-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.69 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": "holp",
"version": "1.1.0",
"description": "HOF approach for AWS Lambda proxy integrations",
"repository": {
"type": "git",
"url": "https://github.com/santiperone/holp"
},
"homepage": "https://holp-docs.vercel.app",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.mts"
},
"./errors": {
"import": "./dist/errors/index.mjs",
"require": "./dist/errors/index.js",
"types": "./dist/errors/index.d.mts"
}
},
"files": [
"dist/*",
"*.d.ts"
],
"directories": {
"test": "test"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.4.2",
"@total-typescript/shoehorn": "^0.1.1",
"@types/aws-lambda": "^8.10.110",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^26.5.3",
"husky": "^8.0.3",
"jest": "^29.4.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsup": "^7.1.0",
"typescript": "^4.9.5"
},
"scripts": {
"build": "tsup",
"lint": "eslint ./src/**/*.ts",
"attw": "attw --pack",
"test": "jest --silent --coverage",
"pre-commit": "lint-staged",
"pre-push": "npm run test"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --max-warnings=0 --fix"
]
},
"author": "Santiago Perone",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
}
}