forked from Pomax/node-flickrapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·40 lines (40 loc) · 920 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
33
34
35
36
37
38
39
40
{
"name": "flickrapi",
"version": "0.6.0",
"author": "Pomax <[email protected]>",
"description": "A Node.js, and client-side, implementation of the Flickr API (for use with an API key, server-side oauth enabled)",
"dependencies": {
"async": "~0.2.10",
"glob": "~3.2.6",
"open": "0.0.x",
"progress": "1.1.4",
"prompt": "0.2.x",
"request": "2.26.x"
},
"devDependencies": {
"express": "~3.4.7",
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.6.3",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt-contrib-uglify": "~0.2.2",
"habitat": "~1.1.0"
},
"main": "./src/FlickrAPI",
"license": "MIT",
"engines": {
"node": ">=0.12"
},
"keywords": [
"flickrapi",
"flickr",
"api",
"oauth"
],
"repository": {
"type": "git",
"url": "https://github.com/Pomax/node-flickrapi.git"
},
"scripts": {
"test": "node test"
}
}