-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.36 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.36 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
{
"name": "@splunk-edu/md2cd",
"version": "1.1.1",
"description": "Convert Markdown to Splunk EDU course descriptions in PDF format.",
"main": "./src/index.js",
"type": "module",
"scripts": {
"test": "vitest run",
"lint": "eslint .",
"prepare": "husky",
"format": "prettier --write .",
"coverage": "vitest run --coverage"
},
"bin": {
"md2cd": "./bin/md2cd.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/splunk/edu-md2cd.git"
},
"author": "Splunk EDU",
"license": "UNLICENSED",
"dependencies": {
"ajv": "^8.17.1",
"commander": "^13.1.0",
"marked": "^15.0.11",
"pdf-lib": "^1.17.1",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"puppeteer": "^24.7.2",
"recursive-readdir": "^2.2.3",
"yaml": "^2.8.2"
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@eslint/js": "^10.0.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
],
"*.md": [
"prettier --write"
],
"*.css": [
"prettier --write"
]
}
}