-
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 <dchester@shutterstock.com>",
"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 <afahy@shutterstock.com>",
"Alex Williams <awilliams@alexwilliams.ca>",
"Chris Becker <chrisb@shutterstock.com>",
"David Chester <david@shutterstock.com>",
"Elliot Foster <efoster@shutterstock.com>",
"Ilya Shaisultanov <ilya.shaisultanov@gmail.com>",
"Nick Doyle <ndoyle@shutterstock.com>",
"Nikolay Martynov <mar.kolya@gmail.com>",
"Richard Littauer <richard.littauer@gmail.com>",
"vkajjam <vkajjam@shutterstock.com>",
"Zubin Tiku <rubikzube@gmail.com>"
]
}