-
Notifications
You must be signed in to change notification settings - Fork 172
/
Copy pathpackage.json
62 lines (62 loc) · 1.44 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
{
"author": "Tim Branyen (@tbranyen)",
"name": "backbone.layoutmanager",
"description": "A layout and template manager for Backbone.js applications.",
"version": "1.0.0",
"homepage": "http://layoutmanager.org/",
"repository": {
"type": "git",
"url": "git://github.com/tbranyen/backbone.layoutmanager.git"
},
"main": "node/index",
"files": [
"backbone.layoutmanager.js",
"node/index.js",
"test/"
],
"browser": "./backbone.layoutmanager.js",
"engines": {
"node": ">=0.8"
},
"dependencies": {
"backbone": "1.2.3",
"underscore.deferred": "^0.4.0",
"cheerio": "^0.19.0",
"underscore": "^1.8.3",
"lodash": "^3.9.3"
},
"peerDependencies": {
"jquery": "*"
},
"devDependencies": {
"bluebird": "^2.9.34",
"browserify": "^10.2.4",
"colors": "^1.1.2",
"coveralls": "^2.11.2",
"grunt": "^0.4.5",
"grunt-benchmark": "^0.3.0",
"grunt-browserify": "^3.8.0",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-jscs": "^1.8.0",
"grunt-nodequnit": "^0.2.0",
"grunt-qunit-istanbul": "^0.4.7",
"jquery": "^2.1.4",
"qunitjs": "^1.18.0",
"requirejs": "^2.1.18"
},
"scripts": {
"test": "grunt"
},
"jam": {
"dependencies": {
"underscore": ">=1.5",
"backbone": "~1.2",
"jquery": ">=1.6"
},
"include": [
"backbone.layoutmanager.js"
],
"main": "backbone.layoutmanager.js"
}
}