-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.36 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "gulp-starter",
"version": "0.1.1",
"description": "Gulp starter with common tasks and scenarios",
"repository": {
"type": "git",
"url": "git://github.com/greypants/gulp-starter.git"
},
"//": [
"The following 'underscore' example demonstrates exposing a module included ",
"by another module. If you were to npm install underscore separately and ",
"require('underscore'), you'd end up with two copies in your bundle. The one",
"you installed, and the one that shipped with another package (backbone in ",
"this example). This is an edge case and should rarely happen.",
"",
"The 'plugin' example makes that file requireable with `require('plugin')`,",
"and available to browserify-shim as 'plugin' on line 30."
],
"browser": {
"underscore": "backbone/node_modules/underscore",
"plugin": "./src/javascript/vendor/jquery-plugin.js"
},
"browserify": {
"transform": [
"browserify-shim",
"coffeeify",
"hbsfy"
]
},
"browserify-shim": {
"plugin": {
"exports": "plugin",
"depends": [
"jquery:$"
]
}
},
"devDependencies": {
"browser-sync": "~2.2.2",
"browserify": "^9.0.3",
"browserify-shim": "^3.8.2",
"coffeeify": "~1.0.0",
"gulp": "^3.8.11",
"gulp-autoprefixer": "^2.1.0",
"gulp-changed": "^1.1.1",
"gulp-concat": "^2.5.2",
"gulp-filesize": "0.0.6",
"gulp-iconfont": "^1.0.0",
"gulp-imagemin": "^2.2.1",
"gulp-insert": "^0.4.0",
"gulp-minify-css": "~0.5.1",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.0.0",
"gulp-rename": "^1.2.0",
"gulp-sass": "~1.3.3",
"gulp-sourcemaps": "^1.5.0",
"gulp-template-compile": "^1.0.0",
"gulp-uglify": "^1.1.0",
"gulp-util": "^3.0.4",
"handlebars": "^3.0.0",
"hbsfy": "~2.2.1",
"karma": "^0.12.31",
"karma-browserify": "^4.0.0",
"karma-chrome-launcher": "^0.1.7",
"karma-coffee-preprocessor": "^0.2.1",
"karma-mocha": "^0.1.10",
"karma-nyan-reporter": "0.0.51",
"karma-sinon-chai": "^0.3.0",
"lodash": "^3.3.1",
"merge-stream": "^0.1.7",
"pretty-hrtime": "~1.0.0",
"require-dir": "^0.1.0",
"vinyl-source-stream": "~1.0.0",
"watchify": "^2.4.0"
},
"dependencies": {
"backbone": "~1.1.2",
"backbone.localstorage": "^1.1.16",
"font-awesome": "^4.3.0",
"jquery": "~2.1.0"
}
}