-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.14 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
{
"name": "@epilot/aws-lambda-utility-middlewares",
"version": "0.0.1",
"description": "AWS Lambda Utility Middlewares",
"repository": {
"type": "git",
"url": "git+https://github.com/epilot-dev/aws-lambda-utility-middlewares.git#main"
},
"author": "João Pinho <[email protected]>",
"contributors": [
"João Pinho(https://github.com/jpinho)",
"Diogo Marques(https://github.com/JoFont)"
],
"scripts": {
"clean": "npm run clean --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"prepublishOnly": "npm lint && npm run build"
},
"license": "MIT",
"files": [
"README.md",
"LICENSE.md"
],
"workspaces": [
"packages/*"
],
"devDependencies": {
"@epilot/eslint-config": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.5.0",
"eslint-plugin-promise": "^6.1.1",
"typescript": "^5.3.3"
}
}