-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
36 lines (36 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
29
30
31
32
33
34
35
36
{
"name": "chrome-fast-tab-switcher",
"version": "1.1.2",
"description": "Chrome extension to quickly switch to other open tabs with just your keyboard",
"devDependencies": {
"watchify": "~0.6.1",
"browserify": "~13.0.0",
"nodeunit": "~0.8.5",
"q": "~1.0.0",
"jshint": "~2.4.3",
"reactify": "~0.8.1"
},
"scripts": {
"test": "nodeunit test/**/*.js",
"jshint": "./node_modules/.bin/jshint src/js/**/*.js*",
"watch": "./scripts/watch.sh",
"build": "./scripts/build.sh",
"package": "npm run jshint && npm test && npm run build && zip package-$(cat package.json | jq -r .version).zip -r build manifest.json"
},
"repository": {
"type": "git",
"url": "git://github.com/BinaryMuse/chrome-fast-tab-switcher.git"
},
"keywords": [
"chrome",
"extension",
"tabs",
"react"
],
"author": "Michelle Tilley <michelle@michelletilley.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BinaryMuse/chrome-fast-tab-switcher/issues"
},
"homepage": "https://github.com/BinaryMuse/chrome-fast-tab-switcher"
}