forked from DIYgod/RSSHub
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 2.43 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
{
"name": "rsshub",
"version": "0.0.1",
"type": "module",
"description": "Make RSS Great Again!",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=dev nodemon --inspect index.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"format": "prettier \"**/*.{js,json,md}\" --write"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/DIYgod/RSSHub.git"
},
"keywords": [
"RSS"
],
"author": "DIYgod",
"license": "MIT",
"bugs": {
"url": "https://github.com/DIYgod/RSSHub/issues"
},
"homepage": "https://github.com/DIYgod/RSSHub#readme",
"devDependencies": {
"jest": "24.9.0",
"cross-env": "6.0.3",
"mockdate": "2.0.5",
"nodemon": "2.0.2",
"pinyin": "2.9.0",
"eslint": "4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"lint-staged": "^7.1.0",
"prettier": "^1.12.1",
"prettier-check": "2.0.0",
"pretty-quick": "2.0.1",
"supertest": "4.0.2",
"yorkie": "^1.0.3",
"@vuepress/plugin-back-to-top": "1.2.0",
"@vuepress/plugin-google-analytics": "1.2.0",
"@vuepress/plugin-pwa": "1.2.0",
"vuepress": "1.2.0"
},
"dependencies": {
"art-template": "4.12.2",
"axios": "^0.19.0",
"cheerio": "1.0.0-rc.2",
"co-redis": "2.1.1",
"crypto": "1.0.1",
"form-data": "^2.3.2",
"git-rev-sync": "1.12.0",
"googleapis": "30.0.0",
"iconv-lite": "0.4.23",
"jsdom": "^11.10.0",
"json-bigint": "0.2.3",
"koa": "2.5.1",
"koa-favicon": "2.0.1",
"koa-router": "7.4.0",
"lru-cache": "4.1.3",
"path-to-regexp": "2.2.1",
"puppeteer": "^1.17.0",
"readall": "^1.1.0",
"redis": "2.8.0",
"twit": "2.2.9",
"winston": "3.0.0-rc3",
"wtf_wikipedia": "^7.7.1"
},
"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"
}
},
"engines": {
"node": ">=10.0.0"
}
}