forked from tbranyen/backbone.layoutmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.19 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
{
"author": "Tim Branyen (@tbranyen)",
"name": "backbone.layoutmanager",
"description": "A layout and template manager for Backbone.js applications.",
"version": "0.9.5",
"homepage": "http://layoutmanager.org/",
"repository": {
"type": "git",
"url": "git://github.com/tbranyen/backbone.layoutmanager.git"
},
"main": "node/index",
"browser": "./backbone.layoutmanager.js",
"engines": {
"node": ">=0.8"
},
"dependencies": {
"backbone": "~1.1.2",
"underscore.deferred": "~0.4.0",
"cheerio": "~0.14.0",
"jquery": "~2.1.1",
"underscore": "~1.6.0"
},
"devDependencies": {
"grunt": "~0.4.5",
"requirejs": "~2.1.14",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-jshint": "~0.10.0",
"grunt-qunit-istanbul": "~0.4.5",
"grunt-nodequnit": "~0.2.0",
"grunt-benchmark": "~0.2.0",
"grunt-jscs-checker": "~0.4.4",
"browserify": "~4.1.9",
"grunt-browserify": "~2.1.0"
},
"scripts": {
"test": "grunt"
},
"jam": {
"dependencies": {
"underscore": ">=1.5",
"backbone": "~1.1",
"jquery": ">=1.6"
},
"include": [
"backbone.layoutmanager.js"
],
"main": "backbone.layoutmanager.js"
}
}