-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
51 lines (51 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
{
"name": "hexo-migrator-rss",
"version": "1.1.0",
"description": "RSS migrator plugin for Hexo",
"main": "index.js",
"directories": {
"lib": "./lib"
},
"files": [
"index.js",
"lib/"
],
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "nyc npm run test"
},
"repository": "hexojs/hexo-migrator-rss",
"bugs": "https://github.com/hexojs/hexo-migrator-rss/issues",
"keywords": [
"hexo",
"rss",
"feed",
"atom",
"migrator"
],
"author": "Tommy Chen <[email protected]> (http://zespia.tw)",
"maintainers": [
"Abner Chou <[email protected]> (http://abnerchou.me)"
],
"license": "MIT",
"dependencies": {
"camaro": "^6.0.2",
"hexo-fs": "^3.0.1",
"hexo-util": "^2.1.0",
"got": "^11.0.1",
"turndown": "^6.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^8.22.0",
"eslint-config-hexo": "^5.0.0",
"hexo": "^6.0.0",
"mocha": "^8.0.1",
"nyc": "^15.0.0",
"sinon": "^9.0.2"
},
"engines": {
"node": ">=12.13.0 <13 || >=14"
}
}