-
Notifications
You must be signed in to change notification settings - Fork 166
/
package.json
70 lines (70 loc) · 1.53 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
{
"name": "percollate",
"version": "4.2.3",
"description": "A command-line tool to grab web pages as PDF",
"main": "index.js",
"type": "module",
"repository": "danburzo/percollate",
"author": "Dan Burzo <danburzo@gmail.com>",
"license": "MIT",
"dependencies": {
"@mozilla/readability": "^0.5.0",
"archiver": "^6.0.1",
"css": "^3.0.0",
"dompurify": "^3.0.8",
"franc-all": "^7.2.0",
"hast-util-from-dom": "^4.2.0",
"hast-util-to-mdast": "^9.0.0",
"html-encoding-sniffer": "^3.0.0",
"hyphenopoly": "^5.3.0",
"iso-639-3-to-1": "^1.0.0",
"jsdom": "^21.1.0",
"mdast-util-gfm": "^2.0.2",
"mdast-util-to-markdown": "^1.5.0",
"mimetype": "^0.0.8",
"node-fetch": "^3.3.2",
"nunjucks": "^3.2.4",
"pdf-lib": "^1.17.1",
"puppeteer": "^19.7.3",
"slugify": "^1.6.6",
"srcset": "^5.0.0",
"whatwg-mimetype": "^3.0.0"
},
"bin": {
"percollate": "./cli.js"
},
"engines": {
"node": "^14.17.0 || >=16.0.0"
},
"devDependencies": {
"epubchecker": "^5.1.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"tape": "^5.7.3"
},
"scripts": {
"prepare": "git config core.hooksPath .git-hooks",
"test": "tape 'test/**/*.test.js'",
"lint": "eslint '{src,test}/**/*.js' '*.js'"
},
"prettier": {
"bracketSpacing": true,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"useTabs": true,
"tabWidth": 4,
"arrowParens": "avoid",
"printWidth": 80
},
"keywords": [
"puppeteer",
"cli",
"pdf",
"readability",
"epub",
"html"
]
}