-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
28 lines (28 loc) · 1.07 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
{
"name": "startpage",
"version": "1.12.0",
"description": "Overrides the browsers newtab page with a custom startpage.",
"main": "src/index.js",
"devDependencies": {
"webextension-polyfill": "^0.6.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -r build/ || true",
"build-base": "npm run clean && mkdir build/ && cp -r src/* build/",
"build-ff": "npm run build-base && ./zip.sh 'firefox'",
"patch-ch": "patch build/index.html < patch/index-html-chrome.diff && patch build/manifest.json < patch/manifest-json-chrome.diff",
"polyf-ch": "cp node_modules/webextension-polyfill/dist/browser-polyfill.js build/js/",
"build-ch": "npm run build-base && npm run polyf-ch && npm run patch-ch && ./zip.sh 'chrome'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/etacarinaea/startpage.git"
},
"author": "etacarinaea",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/etacarinaea/startpage/issues"
},
"homepage": "https://github.com/etacarinaea/startpage#readme"
}