forked from bsudekum/MapTab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 806 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 806 Bytes
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
{
"name": "MapTab",
"version": "1.1.12",
"description": "A new tab Chrome extension",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "watchify ./index.js -o assets/bundle.js",
"build": "NODE_ENV=production browserify ./index.js | uglifyjs -c -m > assets/bundle.js"
},
"browserify": {
"transform": [
[
"babelify"
]
]
},
"author": "Bobby Sudekum",
"license": "ISC",
"dependencies": {
"gazetteer": "^0.1.4",
"mapbox.js": "^2.1.5",
"planetary.js": "^1.1.2",
"react": "^0.13.1",
"react-keybinding": "2.0.0-beta"
},
"devDependencies": {
"babelify": "^6.0.2",
"browserify": "^7.0.3",
"reactify": "^1.1.0",
"uglify-js": "^2.4.16",
"watchify": "^2.2.1"
}
}