-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1019 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
{
"name": "markdoc",
"version": "2.1.4",
"description": "parse markdown to html",
"exports": "./src/index.js",
"scripts": {
"parse": "node ./src/parse.js",
"serve": "node ./src/serve.js",
"lint": "eslint ./src/",
"test": "lab --assert @hapi/code --leaks --verbose ./test/*.test.js ./test/**/*.test.js"
},
"keywords": [
"Merico",
"markdown",
"document"
],
"author": "Dingding Zhang",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=14.17",
"pnpm": ">=7"
},
"dependencies": {
"@hapi/hapi": "^20.3.0",
"@hapi/inert": "^7.1.0",
"dompurify": "^2.4.5",
"dotenv": "^16.0.3",
"gray-matter": "^4.0.3",
"handlebars": "^4.7.7",
"hapi-pino": "^11.0.1",
"html-minifier": "^4.0.0",
"jsdom": "^20.0.3",
"lodash-es": "^4.17.21",
"marked": "^4.0.18",
"pino": "^8.11.0",
"yaml": "^2.2.2"
},
"devDependencies": {
"@hapi/code": "^9.0.3",
"@hapi/lab": "^25.1.2",
"eslint": "^8.22.0"
}
}