-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 795 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 795 Bytes
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
{
"name": "hacktuber-news",
"version": "0.1.0",
"description": "Aggregate blog posts discussed in tech YouTube videos",
"main": "index.js",
"scripts": {
"build": "node index.js",
"serve": "http-server public",
"dev": "npm run build && npm run serve",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest"
},
"type": "module",
"author": "Brian Wo <45139213+brainwo@users.noreply.github.com>",
"license": "MIT",
"dependencies": {
"@extractus/article-extractor": "github:brainwo/article-extractor",
"extract-urls": "^1.4.1",
"http-server": "^14.1.1",
"mustache": "^4.2.0",
"xml2json": "^0.7.1"
},
"devDependencies": {
"@eslint/js": "^9.30.0",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"jest": "^30.0.3"
}
}