-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.77 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 2.77 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "marionette-wires",
"version": "0.0.0",
"description": "Starter kit for Marionette.js Applications using Browserify",
"main": "index.js",
"scripts": {
"start": "gulp",
"test": "gulp test",
"integration": "pioneer"
},
"repository": {
"type": "git",
"url": "git://github.com/thejameskyle/marionette-wires.git"
},
"keywords": [
"marionette",
"browserify",
"backbone"
],
"author": "James Kyle <me@thejameskyle.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/thejameskyle/marionette-wires/issues"
},
"homepage": "https://github.com/thejameskyle/marionette-wires",
"devDependencies": {
"bluebird": "^2.3.0",
"body-parser": "^1.4.3",
"browser-sync": "^1.5.7",
"browserify": "^6.0.3",
"browserify-shim": "^3.5.0",
"chai": "^1.9.1",
"chai-jquery": "^1.2.3",
"express": "^4.4.4",
"gulp": "^3.8.8",
"gulp-autoprefixer": "^1.0.1",
"gulp-clean": "^0.3.1",
"gulp-env": "^0.2.0",
"gulp-jshint": "^1.8.5",
"gulp-less": "^1.3.6",
"gulp-load-plugins": "^0.7.0",
"gulp-mocha": "^1.1.1",
"gulp-plumber": "^0.6.6",
"gulp-rename": "^1.2.0",
"gulp-sourcemaps": "^1.2.4",
"gulp-symlink": "^1.1.0",
"gulp-util": "^3.0.1",
"gulp-watch": "^1.0.7",
"hbsfy": "^1.3.2",
"jsdom": "^0.11.0",
"jshint-stylish": "^1.0.0",
"merge-stream": "^0.1.6",
"minimatch": "^0.3.0",
"mocha": "^1.20.1",
"morgan": "^1.1.1",
"pioneer": "^0.8.2",
"proxyquire": "^1.0.1",
"remapify": "^1.2.0",
"request": "^2.40.0",
"selenium-webdriver": "^2.42.1",
"sinon": "^1.10.2",
"sinon-chai": "^2.5.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.0.0",
"watchify": "^2.0.0"
},
"dependencies": {
"animate.css": "^3.1.1",
"backbone": "^1.1.2",
"backbone-query-parameters": "git://github.com/jhudson8/backbone-query-parameters",
"backbone-react-component": "^0.7.2",
"backbone.marionette": "^2.0.0",
"backbone.radio": "^0.6.0",
"backbone.syphon": "^0.5.0",
"bootstrap": "^3.2.0",
"browserify-swap": "^0.2.1",
"contextify": "^0.1.9",
"handlebars": "^1.3.0",
"jquery": "^2.1.0",
"lodash": "^2.4.1",
"nprogress": "^0.1.6",
"react": "^0.12.2",
"reactify": "^0.17.1"
},
"browser": {
"bootstrap": "./node_modules/bootstrap/dist/js/bootstrap.js"
},
"browserify-shim": {
"bootstrap": {
"depends": [
"jquery:jQuery"
]
}
},
"browserify-swap": {
"@packages": [
"underscore"
],
"dist": {
"underscore.js$": "lodash"
}
},
"browserify": {
"transform": [
"hbsfy",
"browserify-swap",
"browserify-shim",
[
"reactify",
{
"es6": true
}
]
]
}
}