forked from martinkadlec0/Smart-RSS
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.14 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
{
"name": "smartrss",
"version": "2.0.0",
"description": "RSS Reader",
"homepage": "https://github.com/zakius/Smart-RSS",
"devDependencies": {
"@types/firefox-webext-browser": "^120.0.4",
"adm-zip": "^0.5.16",
"chokidar": "^3.5.3",
"eslint": "^8.57.1",
"md5-file": "^5.0.0",
"semver": "^7.7.1"
},
"scripts": {
"prepare": "node build.js prepare",
"package": "node build.js package",
"release": "node build.js release",
"release:minor": "node build.js release minor",
"release:major": "node build.js release major",
"watch": "node build.js watch",
"bump-version": "node build.js bump-version",
"lint": "eslint src/"
},
"repository": {
"type": "git",
"url": "git://github.com/zakius/Smart-RSS.git"
},
"author": "zakius",
"license": "MIT",
"bugs": {
"url": "https://github.com/zakius/Smart-RSS/issues"
},
"engines": {
"node": ">=12.0.0"
},
"browserslist": [
"last 2 Firefox versions",
"last 2 Chrome versions"
],
"private": true
}