-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "twitter-api-io-example",
"version": "1.0.0",
"description": "a node/io server that emits a twitter stream for a given location",
"main": "server/index.js",
"engines":{
"iojs": "2.0.x"
},
"scripts": {
"start": "nodemon server/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/mrblueblue/twitter-api-io-example.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrblueblue/twitter-api-io-example/issues"
},
"homepage": "https://github.com/mrblueblue/twitter-api-io-example",
"dependencies": {
"babel": "^5.4.7",
"express": "^4.12.4",
"moment": "^2.10.3",
"node-geocoder": "^2.20.2",
"nodemon": "^1.3.7",
"twitter": "^1.2.5"
},
"devDependencies": {
"babel-core": "^5.4.7",
"babel-loader": "^5.1.3",
"http-server": "^0.8.0",
"jsx-loader": "^0.13.2",
"node-libs-browser": "^0.5.2",
"webpack": "^1.9.9"
}
}