-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 861 Bytes
/
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
{
"name": "distillery",
"version": "0.1.1",
"description": "Talk to a remote API without needing to expose your secret token or all the endpoints",
"author": "Jorge Pedret <jorgepedret@gmail.com>",
"contributors": [
{ "name": "Brock Whitten", "email": "brock@chloi.io" },
{ "name": "Rob Ellis", "email": "rob@chloi.io" }
],
"main": "./lib/distillery",
"dependencies": {
"request": "2.21.0",
"express": "3.2.x",
"debug":"0.7.2"
},
"devDependencies": {
"mocha": "1.10.0",
"should": "1.2.2"
},
"scripts": {
"test": "./node_modules/.bin/mocha test/* --reporter spec"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/jorgepedret/distillery.git"
},
"bugs": {
"url": "https://github.com/jorgepedret/distillery/issues"
},
"license": "MIT",
"readmeFilename": "README.md"
}