-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 735 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 735 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
{
"name": "gmap-browserify",
"version": "0.0.1",
"description": "google maps api with browserify",
"main": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jim Frenette",
"license": "GPLv3",
"devDependencies": {
"browserify": "^13.0.0",
"browserify-shim": "^3.8.12",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"gulp-webserver": "^0.9.1",
"lodash.assign": "^4.0.6",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jQuery": "global:jQuery"
}
}