-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
63 lines (63 loc) · 1.4 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
{
"name": "mr-pdf",
"version": "1.1.0",
"description": "Generate pdf from document",
"main": "lib/cli.js",
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"prepare": "tsc",
"lint": "eslint \"*/**/*.{js,ts}\"",
"lintfix": "eslint \"*/**/*.{js,ts}\" --fix"
},
"engines": {
"node": "^10.17.0 || >=11.14.0"
},
"bin": {
"mr-pdf": "lib/cli.js"
},
"keywords": [
"pdf",
"docusaurus",
"vuepress",
"mkdocs",
"gitbook"
],
"homepage": "https://github.com/kohheepeace/mr-pdf",
"author": "Kohhee Peace <[email protected]> (http://github.com/kohheePeace)",
"license": "MIT",
"dependencies": {
"chalk": "^3.0.0",
"commander": "^4.1.1",
"puppeteer": "^2.1.1",
"puppeteer-autoscroll-down": "^1.1.1"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/node": "^15.6.1",
"@types/puppeteer": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "2.0.5",
"typescript": "^3.8.3"
},
"files": [
"lib/**/*",
"bin/**/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"./node_modules/.bin/eslint --fix"
]
}
}