-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
57 lines (57 loc) · 1.6 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
{
"author": "ariatemplates <[email protected]> (http://github.com/ariatemplates)",
"name": "git-release-notes",
"description": "Generate beautiful release notes from a git log.",
"typings": "./index.d.ts",
"keywords": [
"git",
"log",
"release notes",
"compare",
"version"
],
"scripts": {
"lint": "npx eslint --fix cli.js index.js lib",
"test": "jest",
"posttest": "npm run lint",
"test-html": "node cli.js -- 32a369f..f6cf9af ./templates/html.ejs > ./samples/output-html.html",
"test-html-bootstrap": "node cli.js -- 32a369f..0419636 ./templates/html-bootstrap.ejs > ./samples/output-html-bootstrap.html",
"test-markdown": "node cli.js -- 32a369f..f6cf9af ./templates/markdown.ejs > ./samples/output-markdown.md",
"test-script": "node cli.js -s ./samples/post-processing.js 32a369f..0419636 ./templates/markdown.ejs",
"test:watch": "jest --watch"
},
"version": "5.0.0",
"dependencies": {
"date-fns": "^1.30.1",
"debug": "^4.1.1",
"ejs": "^2.6.2",
"yargs": "^12.0.5"
},
"contributors": [
{
"name": "Fabio Crisci",
"email": "[email protected]",
"url": "https://github.com/piuccio"
}
],
"bin": "./cli.js",
"repository": {
"type": "git",
"url": "https://github.com/ariatemplates/git-release-notes"
},
"engines": {
"node": ">=10"
},
"homepage": "https://github.com/ariatemplates/git-release-notes",
"license": "MIT",
"preferGlobal": true,
"devDependencies": {
"jest": "26.4.2"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/*.test.js"
]
}
}