forked from Arisamiga/Linkedin-RSS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.34 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.34 KB
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
{
"name": "linkedin-rss",
"version": "1.0.0",
"description": "LinkedIn RSS GitHub Action",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "rollup -c",
"prepare": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"format": "prettier --write .",
"lint": "eslint . --fix --format pretty"
},
"keywords": [
"github-action",
"linkedin",
"rss"
],
"repository": {
"type": "git",
"url": "https://github.com/mrmcmuffinz/Linkedin-RSS.git"
},
"bugs": {
"url": "https://github.com/mrmcmuffinz/Linkedin-RSS/issues"
},
"author": "mrmcmuffinz",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"rss-parser": "^3.13.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.1",
"@vitest/coverage-v8": "^4.0.14",
"@vitest/ui": "^4.0.14",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-pretty": "^6.0.1",
"globals": "^16.5.0",
"nock": "^13.5.6",
"prettier": "^3.4.2",
"rollup": "^4.28.1",
"vitest": "^4.0.14"
}
}