forked from internet-research-labs/instagram-realtime
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 957 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 957 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
38
{
"name": "instagram-realtime",
"version": "0.0.4",
"description": "Event-driven, Object-oriented Instagram API Wrapper",
"main": "libs/InstagramStream.js",
"dependencies": {
"connect": "x.x.x",
"request": "2.x.x"
},
"devDependencies": {
"mocha": "1.x.x",
"express": "3.x.x",
"colors": "0.x.x",
"socket.io": "0.9.x"
},
"scripts": {
"start": "node examples/socket.io.js",
"example-express": "node examples/express.js",
"example-http": "node examples/http.js",
"example-socket.io": "node examples/socket.io.js",
"test": "./node_modules/.bin/mocha -R spec"
},
"engines": {
"node": "0.8.x"
},
"repository": {
"type": "git",
"url": "git://github.com/instagram-realtime/instagram-realtime.git"
},
"keywords": [
"instagram",
"realtime",
"event"
],
"author": "Matt Razorblade Hammerstadt <matt@planwork.us>",
"license": "MIT",
"readmeFilename": "README.md"
}