forked from kaimallea/node-imgur
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 767 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 767 Bytes
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
{
"author": "Kai Mallea <kmallea@gmail.com> (www.kaimallea.com)",
"name": "imgur",
"description": "Upload images to imgur.com",
"version": "0.1.5",
"homepage": "https://github.com/kaimallea/node-imgur",
"keywords": [
"imgur",
"upload",
"images"
],
"repository": {
"type": "git",
"url": "git://github.com/kaimallea/node-imgur.git"
},
"engines": {
"node": ">= v0.10.30"
},
"dependencies": {
"commander": "^2.3.0",
"glob": "^4.0.5",
"q": "^1.0.1",
"request": "^2.40.0"
},
"main": "lib/imgur.js",
"bin": {
"imgur": "./cli.js"
},
"scripts": {
"test": "node_modules/.bin/mocha"
},
"devDependencies": {
"chai": "^1.9.1",
"chai-as-promised": "^4.1.1",
"mocha": "^1.21.4"
}
}