-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.63 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
{
"name": "nodejs-news-feeder",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"type": "module",
"scripts": {
"collect:releases": "node scripts/collect-releases.js",
"collect:issues": "node scripts/collect-issues.js",
"collect:discussions": "node scripts/collect-discussions.js",
"collect:retrospective": "node scripts/collect-retrospective.js",
"rss:validate": "node scripts/validate.js",
"rss:build": "node scripts/build-rss.js",
"rss:format": "node scripts/format.js",
"rss:format-check": "node scripts/format-check.js",
"website:build": "node scripts/build-website.js",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "env TZ='Europe/Amsterdam' node --test",
"test:coverage": "env TZ='Europe/Amsterdam' node --test --test-reporter=lcov --test-reporter-destination=lcov.info",
"test:watch": "env TZ='Europe/Amsterdam' node --test --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodejs/nodejs-news-feeder.git"
},
"author": "",
"license": "MIT",
"engines": {
"node": ">=22.0.0",
"npm": ">=9.6.4"
},
"bugs": {
"url": "https://github.com/nodejs/nodejs-news-feeder/issues"
},
"homepage": "https://github.com/nodejs/nodejs-news-feeder#readme",
"devDependencies": {
"standard": "17.1.0"
},
"dependencies": {
"@octokit/graphql": "6.0.1",
"@ulisesgascon/rss-feed-parser": "^1.0.1",
"ejs": "3.1.9",
"gh-got": "10.0.0",
"got": "13.0.0",
"jsdom": "22.1.0",
"remark": "14.0.3",
"remark-html": "15.0.2",
"rss-parser": "^3.13.0",
"xml-formatter": "3.4.1"
}
}