forked from jgillick/jira-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "jira-changelog",
"version": "1.5.0",
"description": "Generates a changelog by matching git commits to Jira tickets.",
"repository": "https://github.com/jgillick/jira-changelog",
"main": "dist/index.js",
"bin": {
"jira-changelog": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "babel src --out-dir dist -s; cp changelog.config.js ./dist/",
"clean": "rm -r dist || true",
"test": "mocha",
"prepare": "npm run build"
},
"author": "Jeremy Gillick",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"commander": "^2.20.0",
"ejs": "^2.6.1",
"form-urlencoded": "^2.0.9",
"haikunator": "^2.1.1",
"html-entities": "^1.2.1",
"jira-client": "^6.8.0",
"lodash": "^4.17.11",
"node-fetch": "^1.7.3",
"promise-throttle": "^0.3.1",
"request": "^2.88.0",
"simple-git": "^1.113.0",
"source-map-support": "^0.5.12"
}
}