forked from DIYgod/RSSHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.04 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "rsshub",
"version": "0.0.1",
"description": "Make RSS Great Again!",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"format": "eslint \"**/*.js\" --fix && prettier \"**/*.{js,json,md}\" --write",
"lint": "eslint \"**/*.js\" && prettier-check \"**/*.{js,json,md}\"",
"test": "npm run lint && CONNECT_DISABLED=1 node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DIYgod/RSSHub.git"
},
"keywords": [
"RSS"
],
"gitHooks": {
"pre-commit": "npm run lint"
},
"author": "DIYgod",
"license": "MIT",
"bugs": {
"url": "https://github.com/DIYgod/RSSHub/issues"
},
"homepage": "https://github.com/DIYgod/RSSHub#readme",
"devDependencies": {
"eslint": "5.8.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"lint-staged": "^8.0.2",
"nodemon": "^1.18.4",
"prettier": "^1.14.2",
"prettier-check": "^2.0.0",
"vuepress": "0.14.4",
"yorkie": "^2.0.0"
},
"dependencies": {
"art-template": "4.13.1",
"axios": "0.18.0",
"axios-retry": "3.1.1",
"cheerio": "1.0.0-rc.2",
"co-redis": "2.1.1",
"currency-symbol-map": "^4.0.4",
"dayjs": "^1.7.7",
"form-data": "^2.3.2",
"git-rev-sync": "1.12.0",
"googleapis": "34.0.0",
"he": "^1.1.1",
"iconv-lite": "0.4.24",
"imgur": "^0.3.1",
"json-bigint": "0.3.0",
"koa": "2.6.1",
"koa-basic-auth": "^3.0.0",
"koa-favicon": "2.0.1",
"koa-mount": "^4.0.0",
"koa-router": "7.4.0",
"lru-cache": "4.1.3",
"luxon": "^1.4.3",
"markdown-it": "^8.4.2",
"newrelic": "^4.9.0",
"path-to-regexp": "2.4.0",
"pidusage": "^2.0.17",
"plist": "^3.0.1",
"puppeteer": "^1.9.0",
"raven": "^2.6.4",
"readall": "1.1.0",
"redis": "2.8.0",
"rss-parser": "3.5.2",
"sharp": "^0.21.0",
"twit": "2.2.11",
"winston": "3.1.0"
},
"engines": {
"node": ">=8.0.0"
}
}