forked from hexojs/hexo-util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.33 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
{
"name": "hexo-util",
"version": "2.6.0",
"description": "Utilities for Hexo.",
"main": "lib/index",
"scripts": {
"eslint": "eslint lib test",
"test": "mocha",
"test-cov": "nyc --reporter=lcovonly npm run test",
"build:highlight": "node scripts/build_highlight_alias.js",
"prepare": "npm run build:highlight"
},
"directories": {
"lib": "./lib",
"scripts": "./scripts"
},
"files": [
"lib/",
"scripts/",
"highlight_alias.json"
],
"repository": "hexojs/hexo-util",
"homepage": "https://hexo.io/",
"keywords": [
"hexo",
"util",
"utilities"
],
"author": "Tommy Chen <tommy351@gmail.com> (http://zespia.tw)",
"maintainers": [
"Abner Chou <hi@abnerchou.me> (http://abnerchou.me)"
],
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^8.0.1",
"eslint-config-hexo": "^5.0.0",
"html-entities": "^2.1.1",
"html-tag-validator": "^1.5.0",
"mocha": "^9.0.3",
"nyc": "^15.0.0",
"rewire": "^6.0.0"
},
"dependencies": {
"bluebird": "^3.5.2",
"camel-case": "^4.0.0",
"cross-spawn": "^7.0.0",
"deepmerge": "^4.2.2",
"highlight.js": "^11.0.1",
"htmlparser2": "^7.0.0",
"prismjs": "^1.17.1",
"strip-indent": "^3.0.0"
},
"engines": {
"node": ">=12.4.0"
}
}