-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
37 lines (37 loc) · 1.09 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
{
"name": "instagram-node-lib",
"description": "This package is a wrapper for the Instagram API.",
"version": "0.1.1",
"author": "David W. McKelvey <[email protected]> (http://david.mckelveycreative.com/)",
"contributors": [],
"keywords": [
"instagram",
"api",
"lib"
],
"main": "./lib/class.instagram.js",
"engines": {
"node": ">= 0.4.5"
},
"directories": {
"lib": "./lib"
},
"files": [
""
],
"homepage": "https://github.com/mckelvey/instagram-node-lib",
"repository": {
"type": "git",
"url": "git://github.com/mckelvey/instagram-node-lib.git"
},
"scripts": {
"test set": "expresso ./test/instagram.js",
"test geographies": "expresso ./test/instagram.geographies.js",
"test locations": "expresso ./test/instagram.locations.js",
"test media": "expresso ./test/instagram.media.js",
"test tags": "expresso ./test/instagram.tags.js",
"test users": "expresso ./test/instagram.users.js",
"test subscriptions": "expresso ./test/instagram.subscriptions.js",
"test oauth": "expresso ./test/instagram.oauth.js"
}
}