forked from bermi/jsonp-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 907 Bytes
/
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
{
"name": "jsonp-client",
"version": "1.1.1",
"description": "jsonp minimal client for the browser (1.4K) and Node.js",
"author": "Bermi Ferrer <bermi@bermilabs.com>",
"keywords": [
"jsonp",
"async",
"browser",
"node",
"ajax",
"crossdomain",
"CORS",
"json",
"same origin"
],
"bugs": {
"url": "https://github.com/bermi/jsonp-client/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/bermi/jsonp-client.git"
},
"main": "lib/jsonp-client.js",
"browser": {
"superagent-mock": false,
"superagent": false,
"./jsonp-node.js": false
},
"dependencies": {
"superagent": "2.2.0",
"superagent-mock": "1.11.0"
},
"devDependencies": {
"eslint": "^3.3.1",
"expect.js": "^0.3.1",
"mocha": "^2.2.4",
"uglify-js": "^2.7.3"
},
"scripts": {
"test": "make test"
}
}