-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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
52
53
54
{
"name": "serverless-plugin-split-stacks",
"version": "1.14.0",
"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": "zx __tests__/_integration.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dougmoscrop/serverless-plugin-split-stacks.git"
},
"keywords": [
"serverless",
"plugin",
"deployment"
],
"author": "Doug Moscrop <doug.moscrop@gmail.com>",
"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": "^6.1.3",
"aws-sdk": "^2.1691.0",
"eslint": "^8.26.0",
"nyc": "^17.1.0",
"proxyquire": "^2.1.3",
"serverless": "^3",
"sinon": "^19.0.2",
"zx": "^8.1.9"
},
"dependencies": {
"aws-info": "^1.2.0",
"lodash": "^4.17.21",
"proxy-agent": "^6.3.1",
"semver": "^7.3.5",
"throat": "^6.0.1"
},
"peerDependencies": {
"serverless": "1 || 2 || 3 || 4"
},
"ava": {
"files": [
"__tests__/**/*",
"!__tests__/**/fixtures"
]
}
}