-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
85 lines (85 loc) · 2.39 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
82
83
84
85
{
"name": "asciidoctor-pdf",
"version": "1.0.0-alpha.16",
"description": "A PDF converter for AsciiDoc based on web technologies",
"engines": {
"node": ">=16",
"npm": ">=8.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-web-pdf.git"
},
"keywords": [
"asciidoc",
"asciidoctor",
"pdf"
],
"author": "Guillaume Grossetie (https://github.com/mogztter)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mogztter/asciidoctor-web-pdf/issues"
},
"homepage": "https://github.com/Mogztter/asciidoctor-web-pdf#readme",
"dependencies": {
"@asciidoctor/cli": "~3.5",
"@fortawesome/fontawesome-svg-core": "6.2.1",
"@fortawesome/free-brands-svg-icons": "6.2.1",
"@fortawesome/free-regular-svg-icons": "6.2.1",
"@fortawesome/free-solid-svg-icons": "6.2.1",
"@ggrossetie/pagedjs": "0.2.0-next.1623590414",
"chokidar": "~3.5",
"file-url": "~3.0",
"fs-extra": "~11.1.0",
"html-entities": "~2.3",
"mathjax": "3.2.2",
"pdf-lib": "~1.17",
"puppeteer": "15.4.0",
"yargs": "17.6.2"
},
"devDependencies": {
"@asciidoctor/core": "~2.2",
"archiver": "~5.3.0",
"chai": "~4.3",
"cheerio": "~1.0.0-rc.3",
"dirty-chai": "~2.0",
"libnpmpublish": "~4.0",
"mocha": "~10.2.0",
"nunjucks": "~3.2",
"pacote": "~12.0",
"pixelmatch": "~5.3.0",
"pkg": "~5.8",
"rimraf": "~4.1.0",
"sinon": "~15.0.0",
"standard": "~17.0.0"
},
"peerDependencies": {
"@asciidoctor/core": "~2.2"
}
}