forked from danburzo/percollate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) Β· 1020 Bytes
/
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
{
"name": "percollate",
"version": "0.2.15",
"description": "A command-line tool to grab web pages as PDF",
"main": "index.js",
"repository": "danburzo/percollate",
"author": "Dan Burzo <[email protected]>",
"license": "MIT",
"dependencies": {
"commander": "^2.18.0",
"css": "^2.2.4",
"got": "^9.2.2",
"jsdom": "^12.1.0",
"nunjucks": "^3.1.3",
"ora": "^3.0.0",
"puppeteer": "^1.8.0",
"slugify": "^1.3.1",
"srcset": "^1.0.0",
"tmp": "^0.0.33"
},
"bin": {
"percollate": "./cli.js"
},
"engines": {
"node": ">= 8.6.0"
},
"devDependencies": {
"husky": "^1.0.1",
"prettier": "^1.14.3",
"pretty-quick": "^1.7.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"bracketSpacing": true,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"useTabs": true,
"tabWidth": 4,
"jsxBracketSameLine": false,
"arrowParens": "avoid",
"printWidth": 80
},
"keywords": [
"puppeteer",
"cli",
"pdf",
"readability"
]
}