-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 1.66 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
{
"author": "Rodrigo Moutinho",
"name": "ebook-with-asciidoctor",
"description": "Free and Open Source code to automate your ebook! Get your .pdf, .epub, and .mobi in seconds running a single command! Clone this project and start your eBook today!",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rcmoutinho/ebook-with-asciidoctor.git"
},
"bugs": {
"url": "https://github.com/rcmoutinho/ebook-with-asciidoctor/issues"
},
"homepage": "https://github.com/rcmoutinho/ebook-with-asciidoctor",
"keywords": [
"eBook",
"asciidoctor",
"asciidoc",
"pdf",
"epub",
"mobi",
"open source",
"automated"
],
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@commitlint/prompt": "^8.0.0",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/commit-analyzer": "^6.2.0",
"@semantic-release/git": "^7.0.16",
"@semantic-release/github": "^5.4.2",
"@semantic-release/release-notes-generator": "^7.2.1",
"commitizen": "^3.1.1",
"git-cz": "^3.0.1",
"husky": "^2.7.0",
"semantic-release": "^15.13.18",
"semantic-release-cli": "^5.1.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"commit": "./node_modules/.bin/git-cz",
"semantic-release": "./node_modules/.bin/semantic-release",
"semantic-release-cli": "./node_modules/.bin/semantic-release-cli"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
}
}