forked from ariatemplates/git-release-notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"author": "redshelf",
"name": "@redshelf/git-release-notes",
"description": "Generate beautiful release notes from a git log.",
"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": "0.0.0",
"dependencies": {
"date-fns": "^1.29.0",
"debug": "^3.1.0",
"ejs": "^2.5.7",
"optimist": "^0.6.1"
},
"contributors": [
"redshelf"
],
"bin": {
"git-release-notes": "./cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/virdocssoftware/git-release-notes.git"
},
"engines": {
"node": ">=4"
},
"homepage": "https://github.com/virdocssoftware/git-release-notes",
"preferGlobal": true,
"devDependencies": {
"cross-env": "^5.1.3",
"eslint": "^4.18.1",
"jest": "^22.4.2"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/*.test.js"
]
},
"bugs": {
"url": "https://github.com/virdocssoftware/git-release-notes/issues"
},
"main": "index.js",
"directories": {
"lib": "lib"
},
"license": "ISC"
}