forked from ariatemplates/git-release-notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
{
"author": "ariatemplates <contact@ariatemplates.com> (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": "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": "fabio@ariatemplates.com",
"url": "https://github.com/piuccio"
}
],
"bin": "./cli.js",
"repository": {
"type": "git",
"url": "https://github.com/ariatemplates/git-release-notes"
},
"engines": {
"node": ">=8"
},
"homepage": "https://github.com/ariatemplates/git-release-notes",
"preferGlobal": true,
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^6.1.0",
"jest": "^24.8.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/*.test.js"
]
}
}