-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "backbone-crossdomain",
"description": "An extension for Backbone.js with a Sync that adds support for IE 7-9 CORS requests using IE's XDomainRequest Object while maintaining compatibility with non-IE systems.",
"version": "0.4.2",
"homepage": "https://github.com/victorquinn/Backbone.CrossDomain",
"author": {
"name": "Victor Quinn",
"email": "[email protected]",
"url": "http://victorquinn.com"
},
"repository": {
"type": "git",
"url": "git://github.com/victorquinn/Backbone.CrossDomain.git"
},
"bugs": {
"url": "https://github.com/victorquinn/Backbone.CrossDomain/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/victorquinn/Backbone.CrossDomain/blob/master/LICENSE-MIT"
}
],
"main": "Backbone.CrossDomain.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt-contrib-qunit": "0.1.1rc6",
"grunt": "1.5.3"
},
"keywords": [
"backbone",
"plugin",
"cors",
"ie"
],
"dependencies": {
"backbone": "^1.1.2",
"underscore": "^1.7.0"
}
}