-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.65 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "grokearth-web-spike",
"version": "0.0.1",
"private": true,
"description": "Web client spike for GrokEarth",
"browser": {
"jquery": "./node_modules/jquery/dist/jquery.js",
"twbs_bootstrap": "./bower_components/bootstrap/dist/js/bootstrap.js",
"plugin": "./src/scripts/vendor/jquery-plugin.js"
},
"browserify": {
"transform": [
"coffeeify",
"browserify-shim",
"hbsfy"
]
},
"browserify-shim": {
"jquery": {
"path": "./node_modules/jquery/dist/jquery.js",
"exports": "jQuery"
},
"twbs_bootstrap": {
"path": "./bower_components/bootstrap/dist/js/bootstrap.js",
"exports": "twbsbootstrap",
"depends": [
"jquery:$"
]
},
"plugin": {
"exports": "plugin",
"depends": [
"jquery:$"
]
}
},
"dependencies": {
"backbone": "~1.1.2",
"jquery": "~2.1.0",
"backbone.marionette": "~1.7.4"
},
"devDependencies": {
"gulp": "^3.6.0",
"gulp-changed": "^0.3.0",
"gulp-imagemin": "^0.2.0",
"gulp-watch": "^0.5.4",
"browserify-shim": "^3.4.1",
"browserify": "^3.36.0",
"coffeeify": "^0.6.0",
"connect": "^2.14.3",
"gulp-compass": "^1.1.8",
"gulp-livereload": "^1.2.0",
"gulp-notify": "^1.2.4",
"gulp-open": "^0.2.8",
"hbsfy": "^1.3.2",
"vinyl-source-stream": "^0.1.1",
"gulp-bower": "0.0.4"
},
"engines": {
"node": ">=0.10.0"
}
}