-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "armrest",
"description": "A high-level HTTP / REST client for Node",
"version": "5.0.2",
"author": "David Chester <[email protected]>",
"main": "./lib/",
"license": "MIT",
"scripts": {
"lint": "jshint lib tests",
"test": "node_modules/nodeunit/bin/nodeunit tests"
},
"devDependencies": {
"jshint": "^2.12.0",
"nodeunit": "0.11.3"
},
"dependencies": {
"lodash": "^4.17.20",
"log4js": "^0.6.36",
"request": "^2.88.2"
},
"repository": {
"type": "git",
"url": "https://github.com/shutterstock/armrest.git"
},
"keywords": [
"http",
"rest",
"nodejs",
"node"
],
"homepage": "https://github.com/shutterstock/armrest",
"bugs": "https://github.com/shutterstock/armrest/issues",
"contributors": [
"Adam Fahy <[email protected]>",
"Alex Williams <[email protected]>",
"Chris Becker <[email protected]>",
"David Chester <[email protected]>",
"Elliot Foster <[email protected]>",
"Ilya Shaisultanov <[email protected]>",
"Nick Doyle <[email protected]>",
"Nikolay Martynov <[email protected]>",
"Richard Littauer <[email protected]>",
"vkajjam <[email protected]>",
"Zubin Tiku <[email protected]>"
]
}