-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.56 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.56 KB
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
{
"name": "docusaurus-pdf",
"version": "1.2.0",
"description": "Generate pdf from docusaurus document",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"lint": "eslint '*/**/*.{js,ts}'",
"lintfix": "eslint '*/**/*.{js,ts}' --fix",
"test": "jest"
},
"engines": {
"node": "^10.17.0 || >=11.14.0"
},
"bin": {
"docusaurus-pdf": "bin/index.js"
},
"keywords": [
"docusaurus"
],
"author": "kohheepeace",
"license": "MIT",
"devDependencies": {
"@docusaurus/core": "^2.0.0-alpha.58",
"@docusaurus/preset-classic": "^2.0.0-alpha.58",
"@types/express": "^4.17.5",
"@types/jest": "^26.0.3",
"@types/puppeteer": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"clsx": "^1.1.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.17.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"ts-jest": "^26.1.1",
"typescript": "^3.8.3"
},
"dependencies": {
"chalk": "^3.0.0",
"commander": "^4.1.1",
"express": "^4.17.1",
"pdf-lib": "^1.7.0",
"puppeteer": "^2.1.1"
},
"files": [
"lib/**/*",
"bin/**/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"./node_modules/.bin/eslint --fix"
]
}
}