-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.28 KB
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
{
"name": "gofer",
"version": "2.1.5",
"description": "A general purpose service client library for node.js",
"main": "lib/gofer.js",
"scripts": {
"prepublish": "rm -rf lib && make build",
"pretest": "make build",
"test": "mocha",
"posttest": "npub verify"
},
"repository": {
"type": "git",
"url": "git://github.com/groupon/gofer"
},
"keywords": [
"gofer",
"service",
"http"
],
"author": {
"name": "Jan Krems",
"email": "jan.krems@groupon.com>"
},
"contributors": [
{
"name": "Sean McCullough",
"email": "mccullough@groupon.com"
},
{
"name": "Sean Massa",
"email": "smassa@groupon.com"
},
{
"name": "Kofi Appiah",
"email": "kofi@groupon.com"
}
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"license": {
"exclude": [
"test"
]
}
},
"dependencies": {
"debug": "~0.8.1",
"hrduration": "^1.0.0",
"lodash": "~2.4.1",
"node-uuid": "~1.4.1",
"request": "2.40.0"
},
"devDependencies": {
"assertive": "~1.4.0",
"bondjs": "~1.1.1",
"coffee-script-redux": "2.0.0-beta7",
"deepmerge": "^0.2.7",
"express": "~4.1.1",
"mocha": "~1.18.2",
"npub": "~0.5.1",
"semver": "~2.1.0"
}
}