forked from cookpete/auto-changelog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
122 lines (122 loc) · 3 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "adanic-auto-changelog",
"version": "1.22.0",
"description": "Command line tool for generating a changelog from git tags and commit history",
"main": "./lib/index.js",
"bin": {
"adanic-auto-changelog": "./lib/index-executor.js"
},
"scripts": {
"lint": "standard --verbose | snazzy",
"lint:fix": "standard --fix",
"lint-markdown": "markdownlint README.md test/data/*.md",
"test": "npm run build && node lib/index.js --tag-pattern 1.19",
"changelog": "npm run build && node lib/index-executor.js --unreleased true",
"coverage": "echo 'No tests are available'",
"clean": "rimraf lib coverage",
"build": "babel src -d lib",
"preversion": "npm run lint ",
"version": "babel-node src/index.js --package && git add CHANGELOG.md",
"prepublishOnly": "npm run clean && npm run build",
"generate-test-data": "cross-env NODE_ENV=test babel-node scripts/generate-test-data.js"
},
"author": "Pete Cook <[email protected]> (https://github.com/cookpete)",
"homepage": "https://github.com/mohammadranjbar/auto-changelog",
"repository": {
"type": "git",
"url": "git+https://github.com/mohammadranjbar/auto-changelog.git"
},
"bugs": {
"url": "https://github.com/mohammadranjbar/auto-changelog/issues"
},
"keywords": [
"auto",
"automatic",
"changelog",
"change",
"log",
"generator",
"git",
"commit",
"commits",
"history"
],
"license": "MIT",
"dependencies": {
"commander": "^3.0.1",
"core-js": "^3.2.1",
"handlebars": "^4.1.2",
"lodash.uniqby": "^4.7.0",
"markdown-pdf": "^10.0.0",
"node-fetch": "^2.6.0",
"parse-github-url": "^1.0.2",
"regenerator-runtime": "^0.13.3",
"remarkable": "^2.0.0",
"semver": "^6.3.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-eslint": "^10.0.3",
"babel-plugin-istanbul": "^5.2.0",
"babel-plugin-rewire": "^1.2.0",
"chai": "^4.2.0",
"codecov": "^3.5.0",
"cross-env": "^5.2.0",
"markdownlint-cli": "^0.18.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"rimraf": "^3.0.0",
"snazzy": "^8.0.0",
"standard": "^14.1.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": 3
}
]
],
"env": {
"test": {
"plugins": [
"istanbul",
"rewire"
]
}
}
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"test/data/"
]
},
"nyc": {
"all": true,
"include": "src",
"exclude": "src/index.js",
"sourceMap": false,
"instrument": false,
"report-dir": "./coverage",
"temp-dir": "./coverage/.nyc_output",
"require": [
"core-js/stable",
"@babel/register"
],
"reporter": [
"text",
"html"
]
},
"directories": {
"lib": "lib",
"test": "test"
}
}