-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "backbone.subroute",
"description": "Backbone.subroute extends the functionality of Backbone.router such that each of an application's modules can define its own module-specific routes.",
"version": "0.4.6",
"homepage": "https://github.com/ModelN/backbone.subroute",
"author": {
"name": "Dave Cadwallader",
"email": "[email protected]",
"url": "http://geekdave.com"
},
"github": "https://github.com/ModelN/backbone.subroute",
"repository": {
"type": "git",
"url": "git://github.com/ModelN/backbone.subroute.git"
},
"bugs": {
"url": "https://github.com/ModelN/backbone.subroute/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ModelN/backbone.subroute/blob/master/LICENSE"
}
],
"main": "backbone.subroute.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt travis --verbose"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "~0.1",
"grunt-contrib-connect": "^0.10.1",
"grunt-contrib-jasmine": "^0.8.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-uglify": "^0.9.1",
"grunt-jsbeautifier": "~0.2.2",
"grunt-template-jasmine-istanbul": "^0.3.0",
"grunt-template-jasmine-requirejs": "^0.2.0",
"grunt-version": "^1.0.0",
"jasmine-sinon": "^0.4.0",
"sinon": "~1.10.3"
},
"keywords": [
"backbone",
"plugin"
],
"dependencies": {
"backbone": "^1.1.0",
"underscore": "^1.6.0"
}
}