-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
53 lines (53 loc) · 1.13 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
{
"name": "http-sync",
"version": "0.1.2",
"description": "A synchronous HTTP Client library for node.js",
"main": "http-sync.js",
"scripts": {
"test": "node test/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/dhruvbird/http-sync.git"
},
"author": "Dhruv Matani",
"contributors": [
{
"name": "Sean Massa",
"email": "endangeredmassa@gmail.com",
"url": "http://massalabs.com/"
},
{
"name": "Taro Kobayashi",
"email": "9re.3000@gmail.com",
"url": "http://tech.kayac.com/"
},
{
"name": "Charles Bourasseau",
"url": "https://github.com/cbou"
},
{
"name": "Bryan Rockwood",
"url": "https://github.com/brockwood"
},
{
"name": "Jan Krems",
"url": "https://github.com/jkrems"
},
{
"name": "Boris Serdyuk",
"url": "https://github.com/just-boris"
},
{
"name": "Chad Hatcher",
"url": "https://github.com/chatcher"
}
],
"license": "BSD",
"gypfile": true,
"readmeFilename": "README.md",
"dependencies": {
"nan": "~1.8.0",
"caseless": "~0.9.0"
}
}