RSSHub/package.json

142 lines
3.8 KiB
JSON

{
"name": "rsshub",
"version": "1.0.0",
"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/format.js && prettier \"**/*.{js,json}\" --write",
"format:staged": "eslint \"**/*.js\" --fix && node docs/.format/format.js --staged && pretty-quick --staged --verbose --pattern \"**/*.{js,json}\"",
"format:check": "eslint \"**/*.js\" && prettier-check \"**/*.{js,json}\"",
"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.22",
"@types/got": "9.6.11",
"@types/koa": "2.11.6",
"@vuepress/plugin-back-to-top": "1.7.1",
"@vuepress/plugin-google-analytics": "1.7.1",
"@vuepress/plugin-pwa": "1.7.1",
"cross-env": "7.0.2",
"entities": "2.1.0",
"eslint": "7.12.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.1.4",
"jest": "26.6.1",
"mockdate": "3.0.2",
"nock": "13.0.4",
"nodemon": "2.0.6",
"pinyin": "2.9.1",
"prettier": "2.1.2",
"prettier-check": "2.0.0",
"pretty-quick": "3.1.0",
"remark": "12.0.1",
"remark-frontmatter": "2.0.0",
"remark-pangu": "2.2.0",
"remark-preset-prettier": "0.4.0",
"staged-git-files": "1.2.0",
"string-width": "4.2.0",
"supertest": "6.0.0",
"vuepress": "1.7.1",
"yorkie": "2.0.0"
},
"dependencies": {
"@koa/router": "9.4.0",
"@postlight/mercury-parser": "2.2.0",
"@sentry/node": "5.27.2",
"aes-js": "3.1.2",
"art-template": "4.13.2",
"cheerio": "1.0.0-rc.3",
"chrono-node": "2.1.9",
"co-redis": "2.1.1",
"crypto-js": "4.0.0",
"currency-symbol-map": "4.0.4",
"dayjs": "1.9.4",
"dotenv": "8.2.0",
"emailjs-imap-client": "3.1.0",
"etag": "1.8.1",
"fanfou-sdk": "4.2.0",
"git-rev-sync": "3.0.1",
"googleapis": "62.0.0",
"got": "11.8.0",
"he": "1.2.0",
"hooman": "1.2.6",
"https-proxy-agent": "5.0.0",
"iconv-lite": "0.6.2",
"ip-regex": "4.2.0",
"is-localhost-ip": "1.4.0",
"jsdom": "16.4.0",
"json-bigint": "1.0.0",
"json5": "2.1.3",
"koa": "2.13.0",
"koa-basic-auth": "4.0.0",
"koa-favicon": "2.1.0",
"koa-mount": "4.0.0",
"lru-cache": "6.0.0",
"lz-string": "1.4.4",
"mailparser": "3.0.0",
"markdown-it": "12.0.2",
"module-alias": "2.2.2",
"opencc": "1.1.1",
"parse-torrent": "9.0.0",
"pidusage": "2.0.21",
"plist": "3.0.1",
"puppeteer": "5.4.1",
"query-string": "6.13.6",
"redis": "3.0.2",
"require-all": "3.0.0",
"rss-parser": "3.9.0",
"socks-proxy-agent": "5.0.0",
"tiny-async-pool": "1.2.0",
"tough-cookie": "4.0.0",
"tunnel": "0.0.6",
"twit": "2.2.11",
"winston": "3.3.3"
},
"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"
}
}
}