-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
33 lines (33 loc) · 1.14 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
29
30
31
32
33
{
"name": "ghostery-search-extension",
"version": "3.0.0",
"description": "",
"main": "index.js",
"scripts": {
"switch-firefox": "cp manifests/firefox.json src/manifest.json",
"switch-chrome": "cp manifests/chrome.json src/manifest.json",
"build": "web-ext build",
"sign": "web-ext sign --channel unlisted --timeout 360000",
"start-firefox": "web-ext run --pref extensions.experiments.enabled=true --pref security.sandbox.content.level=2",
"start-chrome": "web-ext run --target chromium",
"postinstall": "rm -rf src/libs/; mkdir -p src/libs; cp node_modules/webextension-polyfill/dist/browser-polyfill.js src/libs/browser-polyfill.js"
},
"webExt": {
"sourceDir": "./src/",
"run": {
"firefox": "firefoxdeveloperedition"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ghostery/ghostery-search-extension.git"
},
"bugs": {
"url": "https://github.com/ghostery/ghostery-search-extension/issues"
},
"homepage": "https://github.com/ghostery/ghostery-search-extension#readme",
"devDependencies": {
"web-ext": "^5.2.0",
"webextension-polyfill": "^0.8.0"
}
}