forked from DIYgod/RSSHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.4 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "rsshub",
"version": "0.1.1",
"description": "Make RSS Great Again!",
"main": "lib/pkg.js",
"files": [
"lib"
],
"scripts": {
"start": "node lib/index.js",
"dev": "cross-env NODE_ENV=dev nodemon --inspect lib/index.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"format": "eslint \"**/*.js\" --fix && node docs/format.js && prettier \"**/*.{js,json,md}\" --write",
"format:staged": "eslint \"**/*.js\" --fix && node docs/format.js && pretty-quick --staged --verbose --pattern \"**/*.{js,json,md}\"",
"format:check": "eslint \"**/*.js\" && prettier-check \"**/*.{js,json,md}\"",
"test": "npm run format:check && cross-env NODE_ENV=test jest --coverage --runInBand --forceExit",
"jest": "cross-env NODE_ENV=test jest --runInBand --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DIYgod/RSSHub.git"
},
"keywords": [
"RSS"
],
"gitHooks": {
"pre-commit": "npm run format:staged"
},
"author": "DIYgod",
"license": "MIT",
"bugs": {
"url": "https://github.com/DIYgod/RSSHub/issues"
},
"homepage": "https://github.com/DIYgod/RSSHub#readme",
"devDependencies": {
"@types/cheerio": "0.22.13",
"@types/got": "9.6.7",
"@types/koa": "2.0.50",
"@vuepress/plugin-back-to-top": "1.2.0",
"@vuepress/plugin-google-analytics": "1.2.0",
"@vuepress/plugin-pwa": "1.2.0",
"cross-env": "6.0.3",
"eslint": "6.5.1",
"eslint-config-prettier": "6.4.0",
"eslint-plugin-prettier": "3.1.1",
"jest": "24.9.0",
"mockdate": "2.0.5",
"nock": "11.4.0",
"nodejieba": "2.3.2",
"nodemon": "1.19.3",
"pinyin": "2.9.0",
"prettier": "1.18.2",
"prettier-check": "2.0.0",
"pretty-quick": "2.0.0",
"supertest": "4.0.2",
"vuepress": "1.2.0",
"yorkie": "2.0.0"
},
"dependencies": {
"@postlight/mercury-parser": "2.2.0",
"@sentry/node": "5.7.0",
"aes-js": "3.1.2",
"art-template": "4.13.2",
"cheerio": "1.0.0-rc.3",
"co-redis": "2.1.1",
"currency-symbol-map": "4.0.4",
"dayjs": "1.8.16",
"dotenv": "8.1.0",
"emailjs-imap-client": "3.0.7",
"etag": "1.8.1",
"form-data": "2.5.1",
"git-rev-sync": "1.12.0",
"googleapis": "43.0.0",
"got": "9.6.0",
"he": "1.2.0",
"iconv-lite": "0.5.0",
"imgur": "0.3.1",
"json-bigint": "0.3.0",
"koa": "2.10.0",
"koa-basic-auth": "4.0.0",
"koa-favicon": "2.0.1",
"koa-mount": "4.0.0",
"koa-router": "7.4.0",
"lru-cache": "5.1.1",
"lz-string": "1.4.4",
"mailparser": "2.7.1",
"markdown-it": "9.1.0",
"module-alias": "2.2.2",
"path-to-regexp": "3.1.0",
"pidusage": "2.0.17",
"plist": "3.0.1",
"puppeteer": "1.20.0",
"query-string": "6.8.3",
"redis": "2.8.0",
"require-all": "3.0.0",
"rss-parser": "3.7.2",
"sharp": "0.23.1",
"socks-proxy-agent": "4.0.2",
"tunnel": "0.0.6",
"twit": "2.2.11",
"winston": "3.2.1"
},
"engines": {
"node": ">=8.0.0"
},
"jest": {
"testMatch": [
"**/test/**/*.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/"
],
"coverageReporters": [
"text-summary",
"lcov"
],
"collectCoverageFrom": [
"lib/**/*.js",
"!lib/routes/**/*.js"
],
"bail": true,
"testEnvironment": "node",
"moduleNameMapper": {
"@/(.*)": "<rootDir>/lib/$1"
}
}
}