forked from Timmatt-Lee/GitHub-Jira-Integration
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "github-jira-integration",
"version": "1.0.0",
"description": "Automatically create or bind pull request to jira issue, resolve it when merged",
"main": "index.js",
"scripts": {
"start": "node index",
"test": "mocha --timeout 10000",
"build": "node_modules/.bin/ncc build index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Timmatt-Lee/Github-Jira-Integration.git"
},
"keywords": [
"github",
"jira"
],
"author": "Timmatt",
"license": "ISC",
"bugs": {
"url": "https://github.com/Timmatt-Lee/Github-Jira-Integration/issues"
},
"homepage": "https://github.com/Timmatt-Lee/Github-Jira-Integration#readme",
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^4.0.0",
"axios": "^0.20.0",
"fuse.js": "^6.4.1"
},
"devDependencies": {
"@vercel/ncc": "^0.23.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dotenv": "^8.2.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"mocha": "^8.1.1",
"sinon-chai": "^3.5.0"
}
}