-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 924 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-bin-pagination",
"version": "0.0.3",
"description": "Binary Pagination utilities for Hexo generator plugins.",
"main": "lib/pagination",
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "nyc npm run test"
},
"directories": {
"lib": "./lib"
},
"files": [
"lib"
],
"repository": "CroMarmot/hexo-bin-pagination",
"homepage": "https://github.com/CroMarmot/hexo-bin-pagination",
"keywords": [
"hexo",
"pagination",
"util"
],
"author": "CroMarmot <[email protected]>",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^7.1.0",
"eslint-config-hexo": "^4.1.0",
"hexo": "^5.4.0",
"mocha": "^8.1.1",
"nyc": "^15.0.0"
},
"engines": {
"node": ">=8.6.0",
"hexo": ">=3.9.0"
},
"dependencies": {
"@cromarmot/pagination": "0.0.2",
"hexo-util": "^2.4.0"
}
}