-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 775 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 775 Bytes
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
{
"name": "hexo-pagination",
"version": "4.0.0",
"description": "Pagination utilities for Hexo generator plugins.",
"main": "lib/pagination",
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "c8 --reporter=lcovonly npm run test"
},
"directories": {
"lib": "./lib"
},
"files": [
"lib"
],
"repository": "hexojs/hexo-pagination",
"homepage": "https://hexo.io/",
"keywords": [
"hexo",
"pagination",
"util"
],
"author": "Tommy Chen <[email protected]> (http://zespia.tw)",
"license": "MIT",
"devDependencies": {
"c8": "^7.12.0",
"chai": "^4.3.6",
"eslint": "^8.24.0",
"eslint-config-hexo": "^5.0.0",
"mocha": "^10.0.0"
},
"engines": {
"node": ">=18"
}
}