forked from groupon/gofer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.35 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": "gofer",
"version": "3.5.3",
"description": "A general purpose service client library",
"license": "BSD-3-Clause",
"main": "lib/gofer.js",
"browser": {
"./lib/fetch.js": "./lib/fetch.browser.js",
"./test/instrument.js": "./test/instrument.browser.js",
"./test/mock-service.js": "./test/mock-service.browser.js"
},
"homepage": "https://github.com/groupon/gofer",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/groupon/gofer"
},
"bugs": {
"url": "https://github.com/groupon/gofer/issues"
},
"scripts": {
"pretest": "eslint lib test",
"test": "mocha",
"posttest": "nlm verify"
},
"nlm": {
"license": {
"files": [
"lib"
]
}
},
"dependencies": {
"bluebird": "^3.3.3",
"debug": "^2.2.0",
"lodash": "^4.6.1",
"qs": "^6.1.0",
"url": "^0.11.0"
},
"devDependencies": {
"assertive": "^2.1.0",
"eslint": "^1.0.0",
"eslint-config-groupon": "^2.0.0",
"form-data": "^1.0.0-rc4",
"mocha": "^2.0.0",
"mochify": "^2.17.0",
"nlm": "^3.0.0",
"promise": "^7.1.1",
"self-signed": "^1.3.1",
"whatwg-fetch": "^0.11.0"
},
"author": {
"name": "Groupon",
"email": "opensource@groupon.com"
},
"files": [
"*.js",
"lib"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}