This repository has been archived by the owner on Apr 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
65 lines (65 loc) · 1.57 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
63
64
65
{
"name": "request-json",
"description": "HTTP request client for JSON APIs",
"keywords": [
"requests",
"request",
"api",
"http",
"json",
"client",
"simple",
"utility"
],
"license": "MIT",
"version": "0.6.1",
"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",
"Fedor Shubin",
"Fábio Santos",
"Stephen Tweeddale",
"Benjamin Woodruff"
],
"engines": {
"node": "*"
},
"main": "./main.js",
"dependencies": {
"depd": "1.1.0",
"request": "2.74.0"
},
"devDependencies": {
"body-parser": "1.15.2",
"chai": "3.5.0",
"coffee-script": "1.10.0",
"coffeelint": "1.15.7",
"compression": "1.6.2",
"connect-multiparty": "2.0.0",
"express": "4.14.0",
"lie": "3.1.0",
"mocha": "2.5.3"
},
"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": {}
}