-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
74 lines (74 loc) · 1.9 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
{
"name": "docs-to-pdf",
"version": "0.6.2",
"description": "Generate PDF from Docusaurus",
"main": "lib/cli.js",
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"commitlint": "commitlint --from=HEAD~1",
"prepare": "husky install",
"lint": "eslint \"*/**/*.{js,ts}\"",
"lintfix": "eslint \"*/**/*.{js,ts}\" --fix",
"test": "jest --detectOpenHandles --forceExit"
},
"engines": {
"node": ">=18.0.0"
},
"bin": {
"docs-to-pdf": "lib/cli.js"
},
"keywords": [
"pdf",
"docusaurus",
"gitbook"
],
"homepage": "https://github.com/jean-humann/docs-to-pdf",
"author": "Jean Humann <jean.humann@gmail.com> (https://github.com/jean-humann)",
"license": "MIT",
"dependencies": {
"@types/fs-extra": "^11.0.1",
"chalk": "^4.1.2",
"commander": "^11.0.0",
"console-stamp": "^3.1.1",
"express": "^4.18.2",
"puppeteer": "^21.0.2",
"puppeteer-autoscroll-down": "^1.1.2",
"puppeteer-core": "^21.0.2"
},
"devDependencies": {
"@commitlint/cli": "18.4.4",
"@commitlint/config-conventional": "18.4.3",
"@jest/globals": "^29.5.0",
"@tsconfig/node18": "^18.2.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/node": "^20.4.4",
"@types/supertest": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"commitlint": "18.4.3",
"core-js": "^3.30.2",
"eslint": "^8.33.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^15.2.0",
"prettier": "^3.0.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
},
"files": [
"lib/**/*",
"bin/**/*"
],
"lint-staged": {
"*.{js,ts}": [
"./node_modules/.bin/eslint --fix"
]
}
}