generated from eclass/template-semantic-release-plugin
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 2.45 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": "@eclass/semantic-release-docker",
"version": "4.0.0",
"description": "semantic-release plugin to tag and push docker images",
"main": "src/index.js",
"scripts": {
"lint": "eslint --fix '{src,test}/**/*.js'",
"lint:check": "eslint '{src,test}/**/*.js'",
"format": "prettier --write '{src,test}/**/*.{js,ts}' '*.{json,md}' '.prettierrc' '.{github,vscode}/**/*'",
"format:check": "prettier --check '{src,test}/**/*.{js,ts}' '*.{json,md}' '.prettierrc' '.{github,vscode}/**/*'",
"ts-compile-check": "tsc -p tsconfig.json --noEmit",
"test": "nyc mocha --no-timeouts test"
},
"engines": {
"node": ">=14.17.0"
},
"repository": {
"type": "git",
"url": "https://github.com/eclass/semantic-release-docker.git"
},
"keywords": [
"release",
"semantic-release",
"docker",
"ecr"
],
"author": "Leonardo Gatica <[email protected]> (https://about.me/lgatica)",
"license": "MIT",
"bugs": {
"url": "https://github.com/eclass/semantic-release-docker/issues"
},
"homepage": "https://github.com/eclass/semantic-release-docker#readme",
"dependencies": {
"@semantic-release/error": "^3.0.0",
"aggregate-error": "^3.1.0",
"dockerode": "^3.3.1"
},
"devDependencies": {
"@commitlint/cli": "17.6.3",
"@commitlint/config-conventional": "17.6.3",
"@eclass/eslint-config": "3.0.1",
"@eclass/semantic-release-npm-github-config": "4.0.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/chai": "4.3.5",
"@types/dockerode": "3.3.18",
"@types/mocha": "9.1.1",
"@types/mock-require": "2.0.1",
"@types/node": "17.0.17",
"@types/semantic-release": "20.0.1",
"chai": "4.3.7",
"eslint": "8.36.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-array-func": "3.1.8",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsdoc": "37.9.7",
"eslint-plugin-n": "14.0.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-sonarjs": "0.19.0",
"eslint-plugin-standard": "5.0.0",
"husky": "7.0.4",
"lint-staged": "12.5.0",
"mocha": "9.2.2",
"mock-require": "3.0.3",
"nyc": "15.1.0",
"nyc-config-common": "1.0.1",
"prettier": "2.8.8",
"semantic-release": "19.0.5",
"typescript": "4.9.5"
},
"peerDependencies": {
"semantic-release": ">=18.0.0"
}
}