-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.03 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
{
"name": "@eclass/semantic-release-custom-plugin",
"version": "1.0.0",
"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": ">=12"
},
"repository": {
"type": "git",
"url": "https://github.com/eclass/template-semantic-release-plugin.git"
},
"keywords": [
"release",
"semantic-release"
],
"author": "Leonardo Gatica <[email protected]> (https://about.me/lgatica)",
"license": "MIT",
"bugs": {
"url": "https://github.com/eclass/template-semantic-release-plugin/issues"
},
"homepage": "https://github.com/eclass/template-semantic-release-plugin#readme",
"dependencies": {
"@semantic-release/error": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@eclass/eslint-config": "2.0.0",
"@eclass/semantic-release-npm-github-config": "3.0.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@types/chai": "4.2.12",
"@types/mocha": "8.0.3",
"@types/node": "12.12.62",
"@types/semantic-release": "17.1.0",
"chai": "4.2.0",
"eslint": "7.9.0",
"eslint-plugin-array-func": "3.1.7",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsdoc": "30.5.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-sonarjs": "0.5.0",
"eslint-plugin-standard": "4.1.0",
"husky": "4.3.0",
"lint-staged": "10.4.0",
"mocha": "8.1.3",
"nyc": "15.1.0",
"nyc-config-common": "1.0.1",
"prettier-standard": "16.4.1",
"semantic-release": "17.1.2",
"sinon": "9.0.3",
"stream-buffers": "3.0.2",
"tempy": "0.7.0",
"typescript": "4.0.3"
},
"peerDependencies": {
"semantic-release": ">=11.0.0 <18.0.0"
}
}