forked from leo-ls/neo-deploy-mta-oauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.19 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": "neo-deploy-mta-oauth",
"version": "1.0.10",
"description": "CLI tool for deploying MTAs to SAP BTP, Neo environment",
"license": "MIT",
"keywords": [
"SAP",
"BTP",
"Neo",
"deploy",
"mta",
"ndmo"
],
"author": "Leonardo Schmidt",
"repository": {
"type": "git",
"url": "git+https://github.com/leo-ls/neo-deploy-mta-oauth.git"
},
"homepage": "https://github.com/leo-ls/neo-deploy-mta-oauth#readme",
"bugs": {
"url": "https://github.com/leo-ls/neo-deploy-mta-oauth/issues"
},
"dependencies": {
"axios": "^0.21.1",
"commander": "^8.1.0",
"form-data": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^13.1.0",
"eslint": "^7.32.0",
"husky": "^7.0.1",
"standard-version": "^9.3.1"
},
"bin": {
"ndmo": "./bin/cli.js"
},
"scripts": {
"release": "standard-version"
},
"standard-version": {
"releaseCommitMessageFormat": "chore(release): {{currentTag}} [skip ci]"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}