forked from dougmoscrop/serverless-plugin-split-stacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "serverless-plugin-split-stacks",
"version": "1.9.2",
"description": "Split Serverless deployments in to nested CloudFormation stacks",
"main": "split-stacks.js",
"scripts": {
"coverage": "nyc --all npm test",
"lint": "eslint .",
"postpublish": "git push origin master --tags",
"test": "ava",
"integration-test": "node __tests__/_integration.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dougmoscrop/serverless-plugin-split-stacks.git"
},
"keywords": [
"serverless",
"plugin",
"deployment"
],
"author": "Doug Moscrop <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dougmoscrop/serverless-plugin-split-stacks/issues"
},
"homepage": "https://github.com/dougmoscrop/serverless-plugin-split-stacks#readme",
"devDependencies": {
"ava": "^1.4.1",
"eslint": "^6.1.0",
"nyc": "^14.1.1",
"proxyquire": "^2.1.3",
"serverless": "^1.49.0",
"serverless-plugin-aws-alerts": "^1.4.0",
"serverless-plugin-lambda-dead-letter": "^1.2.1",
"sinon": "^7.4.1"
},
"dependencies": {
"aws-info": "^1.0.0",
"lodash": "^4.17.15",
"semver": "^6.3.0",
"throat": "^5.0.0"
},
"peerDependencies": {
"serverless": "1"
}
}