-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.53 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
{
"name": "cccDataImporter",
"private": true,
"version": "1.0.0",
"repository": "https://github.com/clockcrockwork/cccDataImporter",
"author": "clockcrockwork",
"workspaces": [
"packages/*"
],
"dependencies": {
"@types/jest": "^29.5.12",
"dotenv": "^16.4.5",
"feedparser": "^2.2.10",
"html-to-text": "^9.0.5",
"node-fetch": "^3.3.2",
"rss-parser": "^3.13.0"
},
"scripts": {
"test": "run-s -l test:*",
"test:aliceBlogChecker": "yarn workspace aliceBlogChecker test --maxWorkers=49%",
"test:fetchRss": "yarn workspace fetchRss test --maxWorkers=49%",
"test:getPopularProducts": "yarn workspace getPopularProducts test --maxWorkers=49%",
"test:getPopularRepositories": "yarn workspace getPopularRepositories test --maxWorkers=49%",
"test:notifyDiscord": "yarn workspace notifyDiscord test --maxWorkers=49%",
"upgrade": "yarn workspaces foreach run upgrade-interactive --latest && yarn dedupe && yarn install",
"upgrade-security": "yarn workspaces foreach run upgrade-interactive --latest --pattern '\\bvulnerable\\b' && yarn dedupe && yarn install",
"license-check": "yarn workspaces foreach run license-checker --summary --production --failOn",
"license-output": "license-checker --summary --production --json > license/licenses-root.json && yarn workspaces run license-checker --summary --production --json > license/licenses-packages.json"
},
"devDependencies": {
"jest": "^29.7.0",
"lerna": "^8.1.3",
"license-checker": "^25.0.1",
"ts-jest": "^29.2.0"
}
}