-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
52 lines (52 loc) · 1.07 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
{
"name": "hexo-generator-feed",
"version": "3.0.0",
"description": "Feed generator plugin for Hexo",
"main": "index",
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "nyc --reporter=lcovonly npm run test"
},
"directories": {
"lib": "./lib"
},
"files": [
"lib/",
"atom.xml",
"index.js",
"rss2.xml"
],
"repository": "hexojs/hexo-generator-feed",
"homepage": "https://hexo.io/",
"keywords": [
"hexo",
"rss",
"feed",
"atom",
"generator"
],
"author": "Tommy Chen <[email protected]> (http://zespia.tw)",
"maintainers": [
"Abner Chou <[email protected]> (http://abnerchou.me)"
],
"license": "MIT",
"dependencies": {
"hexo-util": "^3.0.1",
"nunjucks": "^3.2.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"camaro": "^6.2.0",
"chai": "^4.3.4",
"cheerio": "^0.22.0",
"eslint": "^8.6.0",
"eslint-config-hexo": "^5.0.0",
"hexo": "^7.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0"
},
"engines": {
"node": ">=12.13.0"
}
}