-
-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
50 lines (50 loc) · 1.03 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
{
"name": "hexo-renderer-marked",
"version": "6.3.0",
"description": "Markdown renderer plugin for Hexo",
"main": "index",
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "c8 --reporter=lcovonly npm run test"
},
"directories": {
"lib": "./lib"
},
"files": [
"lib",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hexojs/hexo-renderer-marked.git"
},
"keywords": [
"hexo",
"markdown",
"marked",
"renderer"
],
"author": "Tommy Chen <tommy351@gmail.com> (https://zespia.tw)",
"maintainers": [
"Abner Chou <hi@abnerchou.me> (https://abnerchou.me)"
],
"license": "MIT",
"dependencies": {
"dompurify": "^3.0.3",
"hexo-util": "^3.1.0",
"jsdom": "^20.0.1",
"marked": "^12.0.1"
},
"devDependencies": {
"c8": "^8.0.0",
"chai": "^4.3.7",
"eslint": "^8.57.0",
"eslint-config-hexo": "^5.0.0",
"hexo": "^7.1.1",
"mocha": "^10.4.0"
},
"engines": {
"node": ">=14"
}
}