-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
80 lines (80 loc) · 2.03 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "asciidoctor-pdf",
"version": "1.0.0-alpha.12",
"description": "A PDF converter for AsciiDoc based on Asciidoctor.js",
"engines": {
"node": ">=10",
"npm": ">=6.0.0"
},
"bin": {
"asciidoctor-pdf": "bin/asciidoctor-pdf",
"asciidoctor-web-pdf": "bin/asciidoctor-web-pdf"
},
"pkg": {
"assets": [
"css/**/*.css"
],
"scripts": [
"lib/document/**/*.js"
]
},
"files": [
"bin",
"lib",
"css"
],
"scripts": {
"build": "node tasks/prepare-binaries.js",
"test": "npm run test:smoke && npm run test:js",
"test:smoke": "./bin/asciidoctor-pdf --version",
"test:js": "mocha test/**_test.js",
"lint": "standard lib/**.js test/**.js tasks/**js",
"publish": "node tasks/publish.js"
},
"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.5.0",
"@fortawesome/fontawesome-svg-core": "1.2.36",
"@fortawesome/free-brands-svg-icons": "5.15.4",
"@fortawesome/free-regular-svg-icons": "5.15.4",
"@fortawesome/free-solid-svg-icons": "5.15.4",
"@ggrossetie/pagedjs": "0.2.0-next.1623590414",
"chokidar": "3.5.2",
"file-url": "3.0.0",
"fs-extra": "9.1.0",
"html-entities": "^2.1.0",
"mathjax": "3.2.0",
"pdf-lib": "^1.2.1",
"puppeteer": "10.2.0",
"yargs": "16.2.0"
},
"devDependencies": {
"@asciidoctor/core": "^2.2.0",
"archiver": "^5.2.0",
"chai": "4.3.4",
"cheerio": "^1.0.0-rc.3",
"dirty-chai": "2.0.1",
"libnpmpublish": "^4.0.0",
"mocha": "9.1.3",
"nunjucks": "^3.2.1",
"pacote": "^11.2.6",
"pixelmatch": "^5.1.0",
"pkg": "^5.2.1",
"rimraf": "^3.0.0",
"sinon": "^11.1.1",
"standard": "16.0.3"
},
"peerDependencies": {
"@asciidoctor/core": "^2.2.0"
}
}