forked from UpHabit/semantic-release-jira-releases
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "@temptek/semantic-release-jira",
"version": "0.3.2",
"main": "dist/lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/boxcee/semantic-release-jira.git"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"private": false,
"scripts": {
"prepublishOnly": "mkdir -p dist && rm -rf dist && tsc -p .",
"lint": "tslint -p .",
"build": "tsc -p .",
"test": "npx jest"
},
"dependencies": {
"@semantic-release/error": "^2.2.0",
"@types/request": "^2.48.7",
"jira-connector": "^3.1.0",
"jira.js": "^2.6.0",
"lodash": "^4.17.21",
"p-limit": "^3.1.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/node": "^16.7.10",
"@types/semantic-release": "^17.2.1",
"@types/signale": "^1.4.2",
"jest": "^27.1.0",
"madge": "^5.0.1",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^4.4.2"
},
"description": "[**semantic-release**](https://github.com/semantic-release/semantic-release) plugin to publish a jira release.",
"bugs": {
"url": "https://github.com/boxcee/semantic-release-jira/issues"
},
"homepage": "https://github.com/boxcee/semantic-release-jira#readme",
"directories": {
"lib": "lib",
"test": "test"
},
"author": "Moritz Schmitz von Hülst"
}