forked from ggrossetie/asciidoctor-web-pdf
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
executable file
·48 lines (48 loc) · 1.18 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
{
"name": "asciidoctor-pdf",
"version": "1.0.0-alpha.1",
"description": "A PDF converter for AsciiDoc based on Asciidoctor.js",
"engines": {
"node": ">=8.11",
"npm": ">=5.0.0"
},
"bin": {
"asciidoctor-pdf": "bin/asciidoctor-pdf"
},
"files": [
"bin",
"lib"
],
"scripts": {
"test": "./bin/asciidoctor-pdf --version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mogztter/asciidoctor-pdf.js.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mogztter/asciidoctor-pdf.js/issues"
},
"homepage": "https://github.com/Mogztter/asciidoctor-pdf.js#readme",
"dependencies": {
"@asciidoctor/cli": "3.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-brands-svg-icons": "^5.11.2",
"@fortawesome/free-regular-svg-icons": "^5.11.2",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"chokidar": "2.0.4",
"fs-extra": "7.0.1",
"pagedjs": "^0.1.34",
"puppeteer": "1.15.0",
"yargs": "13.2.2"
},
"devDependencies": {
"@asciidoctor/core": "^2.0.0-rc.1"
},
"peerDependencies": {
"@asciidoctor/core": "^2.0.0-rc.1"
}
}