forked from cozy/request-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.5 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"
],
"license": "MIT",
"version": "0.5.4",
"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",
"Googoid",
"Dario Kondratiuk",
"David Neal",
"NickH-nz",
"Frank Rousseau",
"Alan Plum",
"Fábio Santos",
"Stephen Tweeddale",
"Benjamin Woodruff"
],
"engines": {
"node": "*"
},
"main": "./main.js",
"dependencies": {
"depd": "1.0.0",
"request": "2.53.0"
},
"devDependencies": {
"body-parser": "1.2.1",
"chai": "1.9.1",
"coffee-script": "1.9.0",
"coffeelint": "1.8.1",
"connect-multiparty": "1.0.4",
"express": "4.3.1",
"mocha": "1.19.0"
},
"scripts": {
"prepublish": "./node_modules/coffee-script/bin/coffee -cb main.coffee",
"test": "mocha tests.coffee --reporter spec --compilers coffee:coffee-script/register --colors",
"build": "./node_modules/coffee-script/bin/coffee -cb main.coffee",
"lint": "./node_modules/coffeelint/bin/coffeelint main.coffee tests.coffee"
},
"repository": {
"type": "git",
"url": "git://github.com/mycozycloud/request-json.git"
},
"optionalDependencies": {}
}