-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
52 lines (52 loc) · 1.15 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
{
"name": "imgur-node-api",
"description": "Node implementation of the anonymous imgur api",
"version": "0.1.0",
"homepage": "https://github.com/jamiees2/imgur-node-api",
"author": {
"name": "jamiees2",
"email": "jamiees2@gmail.com"
},
"contributors": {
"name": "brutalhonesty",
"email": "sparky1010+github@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/jamiees2/imgur-node-api.git"
},
"bugs": {
"url": "https://github.com/jamiees2/imgur-node-api/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jamiees2/imgur-node-api/blob/master/LICENSE-MIT"
}
],
"main": "lib/imgur",
"engines": {
"node": ">= 0.8.0"
},
"keywords": [
"imgur",
"image",
"sharing",
"upload"
],
"dependencies": {
"request": "~2.16.6"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-jshint": "~0.7.2",
"grunt-contrib-nodeunit": "~0.4.1",
"grunt-contrib-uglify": "~0.2.7",
"grunt-contrib-watch": "~0.5.3",
"nock": "^0.51.0"
},
"scripts": {
"test": "grunt nodeunit"
}
}