-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1.01 KB
/
package.json
File metadata and controls
23 lines (23 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "streetpass-rss",
"description": "A web extension that automatically discovers and records RSS feeds from visited pages, with options to manage and export your feed list.",
"author": "Galileo Sartor <galileo.sartor@gmail.com>",
"scripts": {
"prepare": "python3 -B manifest_build.py set",
"dev:firefox": "web-ext run --devtools --url https://www.omgubuntu.co.uk/",
"dev:chrome": "web-ext run -t chromium --devtools --url https://www.omgubuntu.co.uk/",
"zip:chrome": "mkdir -p web-ext-artifacts && zip -r web-ext-artifacts/streetpassrss-chrome.zip . -x \"*.git*\" -x \"node_modules/*\" -x \"web-ext-artifacts/*\" -x \"manifest_build.py\"",
"publish:firefox": "web-ext sign --api-key $AMO_SIGN_KEY --api-secret $AMO_SIGN_SECRET",
"lint": "web-ext lint",
"build": "web-ext build",
"clean": "rm -rf web-ext-artifacts && python3 -B manifest_build.py reset"
},
"devDependencies": {
"web-ext": "^7.0.0"
},
"dependencies": {},
"keywords": [
"webextension",
"rss"
]
}