-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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": "eleventypub",
"description": "eleventy project that outputs EPUB",
"tags": [
"eleventy",
"11ty",
"ssr",
"static",
"epub",
"template",
"eprdctn"
],
"repository": {
"type": "git",
"url": "https://github.com/marisademeglio/eleventypub.git"
},
"version": "0.1.0",
"scripts": {
"prebuild": "node prebuild.js",
"build": "eleventy build",
"postbuild": "node postbuild.js",
"gulp": "gulp",
"pretty-xml": "gulp xml",
"epubcheck": "java -jar ./lib/epubcheck-4.2.4/epubcheck.jar --mode exp build/epub",
"save": "java -jar ./lib/epubcheck-4.2.4/epubcheck.jar --mode exp --save build/epub",
"rename": "node rename.js",
"ace": "ace --force --outdir build/report build/epub",
"all": "npm-run-all build gulp save ace rename",
"all-no-stylelint": "npm-run-all build pretty-xml save ace rename"
},
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^0.11.1",
"@daisy/ace": "^1.1.1",
"fs": "0.0.1-security",
"fs-extra": "^9.0.1",
"gulp": "^4.0.2",
"gulp-pretty-data": "^0.1.2",
"gulp-stylelint": "^13.0.0",
"markdown-it-imsize": "^2.0.1",
"mime": "^2.4.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"sanitize-filename": "^1.6.3",
"stylelint": "^13.6.0",
"stylelint-config-recommended": "^3.0.0"
}
}