forked from victorquinn/Backbone.CrossDomain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"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.0",
"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": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt-contrib-qunit": "0.1.1rc6",
"grunt": "0.4.0rc7"
},
"keywords": [
"backbone",
"plugin",
"cors",
"ie"
]
}