-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2 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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@sudolabs-io/aws-ssm-cli",
"version": "1.3.147",
"description": "Command line tool for AWS Systems Manager Parameter Store",
"keywords": [
"AWS",
"Environment variables"
],
"homepage": "https://github.com/sudolabs-io/aws-ssm-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sudolabs-io/aws-ssm-cli.git"
},
"bugs": {
"url": "https://github.com/sudolabs-io/aws-ssm-cli/issues"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": "poikaa",
"bin": {
"ssm": "./dist/index.js"
},
"files": [
"dist",
"src"
],
"scripts": {
"prepare": "husky install",
"test": "jest test/",
"build": "tsc --build"
},
"dependencies": {
"@aws-sdk/client-ssm": "3.682.0",
"dotenv": "16.4.5",
"lodash": "4.17.21",
"yargs": "17.7.2"
},
"devDependencies": {
"@commitlint/cli": "16.3.0",
"@commitlint/config-conventional": "16.2.4",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "27.5.2",
"@types/lodash": "4.17.13",
"@types/node": "16.18.116",
"@types/yargs": "17.0.33",
"cz-conventional-changelog": "3.3.0",
"husky": "7.0.4",
"jest": "27.5.1",
"prettier": "2.8.8",
"semantic-release": "19.0.5",
"ts-jest": "27.1.5",
"typescript": "4.9.5"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version}"
}
]
]
}
}