-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
42 lines (42 loc) · 887 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
{
"name": "hexo-generator-category",
"version": "2.0.0",
"description": "Category generator for Hexo.",
"main": "index",
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "c8 --reporter=lcovonly npm run test"
},
"directories": {
"lib": "./lib"
},
"files": [
"index.js",
"lib/"
],
"repository": "hexojs/hexo-generator-category",
"homepage": "https://hexo.io/",
"keywords": [
"hexo",
"generator",
"category"
],
"author": "Tommy Chen <tommy351@gmail.com> (https://zespia.tw)",
"license": "MIT",
"devDependencies": {
"c8": "^9.0.0",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"eslint": "^8.25.0",
"eslint-config-hexo": "^5.0.0",
"hexo": "^7.0.0",
"mocha": "^10.0.0"
},
"dependencies": {
"hexo-pagination": "3.0.0"
},
"engines": {
"node": ">=14"
}
}