-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
93 lines (93 loc) · 2.31 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
83
84
85
86
87
88
89
90
91
92
93
{
"name": "backbone.radio",
"description": "Messaging patterns for Backbone applications.",
"homepage": "https://github.com/marionettejs/backbone.radio",
"version": "2.0.0",
"main": "build/backbone.radio.js",
"module": "build/backbone.radio.esm.js",
"keywords": [
"backbone",
"marionette",
"decoupled",
"pubsub",
"publish",
"subscribe",
"messaging",
"architecture",
"spa"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/marionettejs/backbone.radio/blob/master/LICENSE"
}
],
"scripts": {
"test": "gulp",
"test-browser": "gulp test-browser",
"build": "gulp build",
"coverage": "gulp coverage"
},
"author": {
"name": "Jmeas",
"email": "[email protected]",
"web": "http://jmeas.com"
},
"bugs": {
"url": "https://github.com/marionettejs/backbone.radio/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/marionettejs/backbone.radio.git"
},
"github": "https://github.com/marionettejs/backbone.radio",
"peerDependencies": {
"backbone": "^1.3.3",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-core": "6.24.0",
"babel-eslint": "7.0.0",
"babel-loader": "6.2.0",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.24.0",
"babel-preset-es2015-rollup": "3.0.0",
"babel-register": "6.24.0",
"backbone": ">=1.3.3 <1.4.0",
"chai": "3.4.1",
"del": "2.2.0",
"eslint": "3.2.2",
"glob": "6.0.3",
"gulp": "3.9.0",
"gulp-eslint": "3.0.1",
"gulp-file": "0.2.0",
"gulp-filter": "3.0.0",
"gulp-header": "1.7.1",
"gulp-istanbul": "0.10.3",
"gulp-jscs": "3.0.0",
"gulp-livereload": "3.8.1",
"gulp-load-plugins": "1.1.0",
"gulp-mocha": "2.2.0",
"gulp-plumber": "1.0.1",
"gulp-rename": "1.2.2",
"gulp-sourcemaps": "1.6.0",
"gulp-uglify": "1.5.1",
"gulp-util": "3.0.7",
"isparta": "4.0.0",
"jquery": "^3.2.1",
"json-loader": "0.5.3",
"mkdirp": "0.5.1",
"mocha": "2.3.4",
"rollup": "0.36.3",
"rollup-plugin-babel": "2.6.1",
"sinon": "1.17.2",
"sinon-chai": "2.8.0",
"underscore": "1.8.3",
"webpack": "1.12.9",
"webpack-stream": "3.1.0"
},
"babelBoilerplateOptions": {
"entryFileName": "backbone.radio",
"mainVarName": "Backbone.Radio"
}
}