generated from eclass/template-semantic-release-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.72 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.72 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@eclass/semantic-release-ssh-commands",
"version": "1.0.3",
"description": "semantic-release plugin to deploy app",
"main": "src/index.js",
"scripts": {
"lint": "prettier-standard --lint '{src,test}/**/*.js'",
"ts-compile-check": "tsc -p tsconfig.json --noEmit",
"test": "nyc mocha test"
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "https://github.com/eclass/semantic-release-ssh-commands.git"
},
"keywords": [
"release",
"semantic-release"
],
"author": "Leonardo Gatica <lgatica@protonmail.com> (https://about.me/lgatica)",
"license": "MIT",
"bugs": {
"url": "https://github.com/eclass/semantic-release-ssh-commands/issues"
},
"homepage": "https://github.com/eclass/semantic-release-ssh-commands#readme",
"dependencies": {
"@semantic-release/error": "^2.1.0",
"lodash": "^4.17.20",
"ssh-exec": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@eclass/eslint-config": "2.0.1",
"@eclass/semantic-release-npm-github-config": "3.0.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.1",
"@types/chai": "4.3.4",
"@types/lodash": "4.14.192",
"@types/mocha": "8.2.3",
"@types/node": "13.13.52",
"@types/semantic-release": "17.2.6",
"chai": "4.3.7",
"eslint": "7.32.0",
"eslint-plugin-array-func": "3.1.8",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsdoc": "30.7.13",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-sonarjs": "0.19.0",
"eslint-plugin-standard": "4.1.0",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"mocha": "8.4.0",
"mock-require": "3.0.3",
"nyc": "15.1.0",
"nyc-config-common": "1.0.1",
"prettier-standard": "16.4.1",
"semantic-release": "17.4.7",
"sinon": "9.2.4",
"stream-buffers": "3.0.2",
"tempy": "1.0.1",
"typescript": "4.9.5"
},
"peerDependencies": {
"semantic-release": ">=11.0.0 <18.0.0"
},
"eslintConfig": {
"extends": "@eclass"
},
"eslintIgnore": [
"coverage"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"{src,test}/**/*.js": [
"eslint --fix",
"prettier-standard"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"renovate": {
"extends": [
"@eclass:js-lib"
]
},
"release": {
"extends": "@eclass/semantic-release-npm-github-config"
},
"nyc": {
"extends": "nyc-config-common"
}
}