-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.3 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
49
50
51
52
53
{
"name": "serverless-plugin-lambda-deployments",
"engines": {
"node": ">=18.0.0"
},
"version": "0.3.0",
"description": "Serverless Framework v3 plugin for Lambda alias management",
"main": "serverless-plugin-lambda-deployments.js",
"scripts": {
"test": "npm run lint && NODE_ENV=test ./node_modules/mocha/bin/mocha.js $(find ./ -name '*.test.js' -not -path '.*/node_modules/*')",
"watch": "NODE_ENV=test ./node_modules/mocha/bin/mocha.js -w $(find ./ -name '*.test.js' -not -path '*/node_modules/*')",
"lint": "standard"
},
"author": "Ariel Santos <ariel.santos@draftea.com>",
"license": "ISC",
"repository": {
"url": "https://github.com/Drafteame/serverless-plugin-lambda-deployments.git",
"type": "git"
},
"dependencies": {
"flat": "^6.0.1",
"lodash": "^4.18.1",
"omit-empty": "^1.0.0"
},
"devDependencies": {
"chai": "^4.5.0",
"get-installed-path": "^4.0.8",
"mocha": "^11.7.5",
"serverless": "^3.40.0",
"standard": "*"
},
"peerDependencies": {
"serverless": ">= 1.26.0"
},
"keywords": [
"aws",
"lambda",
"serverless",
"alias",
"deployment"
],
"standard": {
"globals": [
"describe",
"context",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
}
}