-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "serverless-plugin-bootstrap",
"version": "2.3.0",
"description": "Deploy bootstrap CloudFormation stacks prior to deploying your Serverless app",
"main": "bootstrap.js",
"scripts": {
"test": "nyc --all ava",
"posttest": "eslint .",
"ava": "ava",
"postpublish": "git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dougmoscrop/serverless-plugin-bootstrap.git"
},
"keywords": [
"serverless",
"plugin"
],
"author": "Doug Moscrop <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dougmoscrop/serverless-plugin-bootstrap/issues"
},
"homepage": "https://github.com/dougmoscrop/serverless-plugin-bootstrap#readme",
"devDependencies": {
"ava": "^3.13.0",
"eslint": "^8.6.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^9.2.1"
},
"contributors": [
"Doug Moscrop (https://github.com/dougmoscrop)"
],
"dependencies": {
"@cfn/diff": "^2.0.0",
"@cfn/pkg": "^1.3.0",
"chalk": "^2.4.2",
"deep-diff": "^1.0.2",
"js-yaml": "^3.14.0"
}
}