-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1.23 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
{
"name": "hotkey-tabs",
"version": "1.9.0",
"description": "This is the source code for a firefox addon that allows for the quick switching and loading of commonly used website and webpages with Alt-number keyboard shortcuts. If the specified website or webpage is open, then firefox will switch to that tab, else it will open the site in a new tab.",
"main": "background-script.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "gulp build",
"build": "gulp build && cd build && web-ext build",
"firefox": "concurrently --kill-others \"gulp default\" \"cd build && web-ext run\"",
"firefoxDev": "cd build && web-ext run --firefox=\"C:\\Program Files\\Firefox Developer Edition\\firefox.exe\"",
"watch": "gulp watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jon-Salmon/hotkey-tabs.git"
},
"author": "Jon Salmon",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Jon-Salmon/hotkey-tabs/issues"
},
"homepage": "https://github.com/Jon-Salmon/hotkey-tabs#readme",
"devDependencies": {
"concurrently": "^3.5.1",
"gulp": "^3.9.1",
"gulp-slm": "^1.1.3",
"gulp-sass": "^3.2.1",
"gulp-concat": "^2.6.1"
}
}