-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
81 lines (81 loc) · 2.28 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
81
{
"name": "asciidoctor-pdf",
"version": "1.0.0-alpha.16",
"description": "A PDF converter for AsciiDoc based on Asciidoctor.js",
"engines": {
"node": ">=12",
"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-web-pdf --version",
"test:js": "mocha test/**_test.js",
"lint": "standard lib/**.js test/**.js tasks/**js",
"publish": "node tasks/publish.js",
"test:update-linux-reference": "docker build -f test/Dockerfile -t asciidoctor/web-pdf-test . && docker run --name asciidoctorwebpdftest asciidoctor/web-pdf-test:latest; docker cp asciidoctorwebpdftest:/app/test/output/. ./test/reference/linux/ && docker rm asciidoctorwebpdftest"
},
"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",
"@fortawesome/fontawesome-svg-core": "6.2.0",
"@fortawesome/free-brands-svg-icons": "6.2.0",
"@fortawesome/free-regular-svg-icons": "6.2.0",
"@fortawesome/free-solid-svg-icons": "6.2.0",
"@ggrossetie/pagedjs": "0.2.0-next.1623590414",
"chokidar": "~3.5",
"file-url": "~3.0",
"fs-extra": "~10.1",
"html-entities": "~2.3",
"mathjax": "3.2.2",
"pdf-lib": "~1.17",
"puppeteer": "15.4.0",
"yargs": "17.5.1"
},
"devDependencies": {
"@asciidoctor/core": "~2.2",
"archiver": "~5.2",
"chai": "~4.3",
"cheerio": "~1.0.0-rc.3",
"dirty-chai": "~2.0",
"libnpmpublish": "~4.0",
"mocha": "~9.2",
"nunjucks": "~3.2",
"pacote": "~12.0",
"pixelmatch": "~5.1",
"pkg": "~5.2",
"rimraf": "~3.0",
"sinon": "~13.0",
"standard": "~16.0"
},
"peerDependencies": {
"@asciidoctor/core": "~2.2"
}
}