-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.5 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
{
"name": "serverless-offline-lambda-function-urls",
"version": "1.0.3",
"license": "ISC",
"description": "An extension off serverless-offline that adds support to lambda function urls",
"type": "module",
"main": "./index.js",
"files": [
"index.js"
],
"bugs": {
"url": "https://github.com/MarioSimou/serverless-offline-lambda-function-urls/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MarioSimou/serverless-offline-lambda-function-urls.git"
},
"scripts": {
"prettier": "prettier '.'",
"prettier:check": "pnpm prettier -c",
"prettier:format": "pnpm prettier -l -w ",
"lint:check": "eslint '**/*.{ts,js}'",
"lint:format": "pnpm lint:check --fix",
"start:template:plain": "pnpm --recursive --filter aws-nodejs start",
"start:template:ecmascript": "pnpm --recursive --filter aws-nodejs-ecma-script start",
"start:template:typescript": "pnpm --recursive --filter aws-nodejs-typescript start",
"clean": "rm -rf node_modules 2>dev/null"
},
"peerDependencies": {
"serverless": "3.x",
"serverless-offline": ">= 12.x"
},
"keywords": [
"serverless-offline",
"Lambda Function Urls"
],
"author": "Marios Simou",
"contributors": [
{
"name": "Marios Simou",
"url": "https://www.mariossimou.dev",
"author": true
}
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "8.37.0",
"prettier": "^2.8.7"
}
}