forked from cookpete/auto-changelog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 2.65 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
{
"name": "auto-changelog",
"version": "1.13.0",
"description": "Command line tool for generating a changelog from git tags and commit history",
"main": "./lib/index.js",
"bin": {
"auto-changelog": "./lib/index.js"
},
"scripts": {
"lint": "standard --verbose | snazzy",
"lint-markdown": "markdownlint README.md test/data/*.md",
"test": "cross-env NODE_ENV=test nyc mocha test",
"coverage": "nyc report --reporter=json && codecov -f coverage/coverage-final.json",
"clean": "rm -rf lib coverage",
"build": "babel src -d lib",
"preversion": "npm run lint && npm run test",
"version": "babel-node src/index.js --package && git add CHANGELOG.md",
"prepublish": "npm run clean && npm run build",
"postpublish": "npm run clean",
"generate-test-data": "cross-env NODE_ENV=test babel-node scripts/generate-test-data.js"
},
"author": "Pete Cook <[email protected]> (http://github.com/cookpete)",
"homepage": "https://github.com/CookPete/auto-changelog",
"repository": {
"type": "git",
"url": "https://github.com/CookPete/auto-changelog.git"
},
"bugs": {
"url": "https://github.com/CookPete/auto-changelog/issues"
},
"keywords": [
"auto",
"automatic",
"changelog",
"change",
"log",
"generator",
"git",
"commit",
"commits",
"history"
],
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.4.3",
"commander": "^2.20.0",
"handlebars": "^4.0.12",
"lodash.uniqby": "^4.7.0",
"node-fetch": "^2.3.0",
"parse-github-url": "^1.0.2",
"semver": "^6.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"babel-eslint": "^10.0.1",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-rewire": "^1.2.0",
"chai": "^4.2.0",
"codecov": "^3.3.0",
"cross-env": "^5.2.0",
"markdownlint-cli": "^0.15.0",
"mocha": "^6.1.2",
"nyc": "^13.1.0",
"snazzy": "^8.0.0",
"standard": "^12.0.1"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"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": [
"@babel/polyfill",
"@babel/register"
],
"reporter": [
"text",
"html"
]
}
}