-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "jira-changelog",
"version": "2.1.0",
"description": "Generates a changelog by matching git commits to Jira tickets.",
"repository": "https://github.com/jgillick/jira-changelog",
"main": "dist/scripts/index.js",
"bin": {
"jira-changelog": "dist/scripts/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "babel src --out-dir dist/scripts -s; cp changelog.config.js ./dist/",
"clean": "rm -r dist || true",
"test": "npm run build && jest dist",
"prepare": "npm run build",
"cli": "npm run build && node dist/scripts/cli.js"
},
"author": "Jeremy Gillick",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"jest": "^25.5.4"
},
"dependencies": {
"commander": "^2.20.0",
"core-js": "^3.6.5",
"ejs": "^3.0.2",
"form-urlencoded": "^2.0.9",
"haikunator": "^2.1.2",
"html-entities": "^1.3.1",
"jira-client": "^6.16.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.0",
"promise-throttle": "^1.0.1",
"regenerator-runtime": "^0.13.5",
"simple-git": "^1.132.0",
"source-map-support": "^0.5.16"
}
}