-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
47 lines (47 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
{ "name" : "carrier"
, "description" : "Evented stream line reader for node.js"
, "version" : "0.3.0"
, "homepage" : "http://github.com/pgte/carrier"
, "author" :
{
"name": "Pedro Teixeira"
, "email": "[email protected]"
}
, "contributors" :
[
{
"name": "Pedro Teixeira"
, "email": "[email protected]"
}
, {
"name": "Stéphan Kochen"
, "email": "[email protected]"
}
, {
"name": "Patrick Georgi"
, "url": "https://github.com/pgeorgi"
}
, {
"name": "Mattijah"
, "url": "https://github.com/Mattijah"
}
]
, "repository" :
{ "type" : "git"
, "url" : "http://github.com/pgte/carrier.git"
}
, "bugs" :
{ "mail" : "[email protected]"
, "url" : "http://github.com/pgte/carrier/issues"
}
, "directories" : { "lib" : "./lib" }
, "engines" : { "node" : ">=0.3.0" }
, "devDependencies": { "tap" : "0.2" }
, "scripts" : { "test" : "tap test/*.js" }
, "main": "./lib/carrier.js"
, "licenses" :
[ { "type" : "MIT"
, "url" : "http://github.com/pgte/carrier/raw/master/LICENSE"
}
]
}