forked from RoundingWellOS/backbone.eventrouter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.25 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
{
"name": "backbone.eventrouter",
"version": "1.0.1",
"description": "A highly opinionated, simplistic Backbone.Router coupled with a Backbone.Radio.Channel",
"main": "./dist/backbone.eventrouter.js",
"engine": "node >= 4.0.0",
"scripts": {
"test": "gulp",
"test-browser": "gulp test-browser",
"build": "gulp build",
"coverage": "gulp coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/RoundingWellOS/backbone.eventrouter.git"
},
"keywords": [
"backbone",
"backbonejs",
"Backbone.Radio",
"Router",
"Backbone.Router",
"Pub/sub router"
],
"author": "Paul Falgout <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/RoundingWellOS/backbone.eventrouter/issues"
},
"homepage": "https://github.com/RoundingWellOS/backbone.eventrouter",
"devDependencies": {
"babel-core": "6.7.7",
"babel-eslint": "6.0.3",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "6.6.0",
"babel-preset-es2015-rollup": "1.2.0",
"babel-register": "6.7.2",
"backbone": "1.3.3",
"backbone.radio": "^2.0.0",
"chai": "2.0.0",
"del": "1.1.1",
"eslint": "2.8.0",
"gulp": "3.9.1",
"gulp-babel-istanbul": "1.1.0",
"gulp-eslint": "2.0.0",
"gulp-file": "0.2.0",
"gulp-filter": "2.0.0",
"gulp-livereload": "3.4.0",
"gulp-load-plugins": "0.8.0",
"gulp-mocha": "2.0.0",
"gulp-notify": "2.1.0",
"gulp-plumber": "0.6.6",
"gulp-rename": "1.2.0",
"gulp-sourcemaps": "1.6.0",
"gulp-uglify": "2.0.0",
"jquery": "~2.1.1",
"jsdom": "8.0.0",
"mocha": "2.1.0",
"rollup": "0.25.8",
"rollup-plugin-babel": "2.4.0",
"rollup-plugin-commonjs": "2.2.1",
"rollup-plugin-json": "2.0.0",
"rollup-plugin-multi-entry": "1.2.0",
"rollup-plugin-node-resolve": "1.5.0",
"sinon": "1.12.2",
"sinon-chai": "2.7.0",
"underscore": "~1.9.1"
},
"babelBoilerplateOptions": {
"entryFileName": "backbone.eventrouter",
"exportVarName": "Backbone.EventRouter",
"mochaGlobals": [
"stub",
"spy",
"expect",
"_",
"Backbone",
"Radio"
]
},
"peerDependencies": {
"backbone": "^1.3.3",
"backbone.radio": "^2.0.0",
"underscore": "^1.9.0"
}
}