-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.93 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "insomnia-plugin-cloudformation-output",
"version": "0.0.1",
"description": "Get CloudFormation output values within insomnia",
"main": "dist/index.js",
"repository": "git@github.com:drg-adaptive/insomnia-plugin-cloudformation-output.git",
"author": "Ben Force",
"keywords": [
"cloudformation",
"cloudformation-stacks",
"insomnia",
"insomnia-plugin",
"insomnia-plugins",
"insomnia-rest"
],
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.0.5",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"commitizen": "^4.0.4",
"cz-conventional-changelog": "^3.1.0",
"semantic-release": "^17.0.7",
"typescript": "^3.8.3"
},
"scripts": {
"build": "tsc",
"prepublish": "yarn build"
},
"insomnia": {
"name": "cfoutput",
"description": "Get CloudFormation output values within insomnia"
},
"dependencies": {
"aws-sdk": "^2.661.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogTitle": "# insomnia-plugin-cloudformation-output Change Log",
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/github",
"@semantic-release/npm"
],
"verifyConditions": [
"@semantic-release/github",
"@semantic-release/npm"
],
"prepare": [
"@semantic-release/npm",
"@semantic-release/changelog"
],
"publish": [
"@semantic-release/npm",
{
"path": "@semantic-release/github",
"assets": "CHANGELOG.md"
}
]
}
}