-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 996 Bytes
/
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
{
"name": "jira-2-github",
"version": "1.0.0",
"description": "import jira issues into github",
"main": "dist/app.js",
"scripts": {
"build": "tsc",
"start": "ts-node-dev --respawn --transpileOnly src/app.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukesUbuntu/jira-2-github.git"
},
"keywords": [
"jira",
"github"
],
"author": "lukesubuntu",
"license": "ISC",
"bugs": {
"url": "https://github.com/lukesUbuntu/jira-2-github/issues"
},
"homepage": "https://github.com/lukesUbuntu/jira-2-github#readme",
"devDependencies": {
"@types/express": "^4.16.1",
"@types/node": "^13.11.0",
"ts-node-dev": "^1.0.0-pre.44",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"dependencies": {
"github-api": "^3.3.0",
"xml-js": "^1.6.11"
}
}