-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 797 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 797 Bytes
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
{
"name": "lambda-monorepo",
"version": "0.7.0",
"description": "Deploy your AWS Lambda functions based on the files changed in a mono repo",
"main": "dist/index.js",
"scripts": {
"coverage": "jest --coverage",
"test": "jest --coverage --verbose",
"build": "ncc build index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blombard/lambda-monorepo.git"
},
"author": "Baptiste Lombard",
"license": "MIT",
"bugs": {
"url": "https://github.com/blombard/lambda-monorepo/issues"
},
"homepage": "https://github.com/blombard/lambda-monorepo#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"shelljs": "^0.8.5",
"yaml": "^2.8.3"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"jest": "^29.7.0"
}
}