forked from tbranyen/backbone.layoutmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.11 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
{
"author": "Tim Branyen (@tbranyen)",
"name": "backbone.layoutmanager",
"description": "A layout and template manager for Backbone.js applications.",
"version": "0.8.7",
"homepage": "http://tbranyen.github.com/backbone.layoutmanager/",
"repository": {
"type": "git",
"url": "git://github.com/tbranyen/backbone.layoutmanager.git"
},
"main": "node/index",
"engines": {
"node": ">=0.8"
},
"dependencies": {
"backbone": "~1.0",
"underscore.deferred": "~0.4",
"cheerio": "~0.10.8",
"underscore": "~1.4"
},
"devDependencies": {
"grunt": "~0.4",
"grunt-cli": "~0.1",
"grunt-contrib-jshint": "0.1.1rc5",
"grunt-contrib-qunit": "0.1.1rc5",
"grunt-nodequnit": "~0.1"
},
"scripts": {
"test": "grunt"
},
"jam": {
"dependencies": {
"underscore": "~1.4",
"backbone": "~1.0",
"jquery": ">=1.6"
},
"include": [
"backbone.layoutmanager.js"
],
"main": "backbone.layoutmanager.js",
"shim": {
"deps": [
"jquery",
"backbone",
"underscore"
],
"exports": "Backbone.Layout"
}
}
}