forked from cozy/request-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.29 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
{
"name": "request-json",
"description": "HTTP request client for JSON APIs",
"keywords": [
"requests",
"request",
"api",
"http",
"json",
"client",
"simple",
"utility"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/mycozycloud/request-json/blob/master/LICENSE"
}
],
"version": "0.5.0",
"homepage": "https://github.com/mycozycloud/request-json/",
"bugs": {
"url": "https://github.com/mycozycloud/request-json/issues"
},
"author": "Cozy Cloud <[email protected]> (http://cozycloud.cc)",
"contributors": [
"Zoe Bellot",
"Romain Foucault",
"Dario Kondratiuk",
"David Neal",
"NickH-nz",
"Frank Rousseau",
"Alan Plum",
"Fábio Santos",
"Stephen Tweeddale",
"Benjamin Woodruff"
],
"engines": {
"node": "*"
},
"main": "./main.js",
"dependencies": {
"request": "2.45.0"
},
"devDependencies": {
"coffee-script": "1.7.1",
"express": "4.3.1",
"mocha": "1.19.0",
"chai": "1.9.1",
"body-parser": "1.2.1",
"connect-multiparty": "1.0.4"
},
"scripts": {
"prepublish": "cake build",
"test": "cake tests"
},
"repository": {
"type": "git",
"url": "git://github.com/mycozycloud/request-json.git"
},
"optionalDependencies": {}
}