Skip to content

Commit

Permalink
- Fixing some warnings during npm install (JaredHawkins#50)
Browse files Browse the repository at this point in the history
- Some dependencies updated
- Dependencies status badges
  • Loading branch information
carloscarcamo committed Jan 8, 2016
1 parent d85f11f commit 7f1b250
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
TweetGeoViz
===========

[![Dependency Status](https://david-dm.org/JaredHawkins/TweetGeoViz.svg?style=flat-square)](https://david-dm.org/JaredHawkins/TweetGeoViz)
[![devDependency Status](https://david-dm.org/JaredHawkins/TweetGeoViz/dev-status.svg?style=flat-square)](https://david-dm.org/JaredHawkins/TweetGeoViz#info=devDependencies)

Visualization tool to view tweets by location and content.

------
Expand Down Expand Up @@ -34,7 +37,7 @@ This project uses mongodb to manage its database, node.js for a server, and npm
- [Google Maps APIs](https://www.google.ca/work/mapsearth/products/mapsapi.html)
- [Mocha testing](http://mochajs.org/)
- [ES2015](https://babeljs.io/docs/learn-es2015/)

##Setup
In the top directory of the project, run

Expand Down Expand Up @@ -115,7 +118,7 @@ Each element in the database contains the following key / value pairs:
The `/search` route in `routes.js` chews up tweets from the database into [geoJSON format](http://geojson.org/) (not strictly necessary at present, but we'll use this format for serving raw data from the database, and for potentially interfacing with other mapping tools in future). The specific format to be used contains only the minimal information necessary for plotting on a map:

```
{
{
type: "FeatureCollection",
features: [...]
}
Expand Down
5 changes: 3 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

var gulp = require('gulp');
var runSequence = require('run-sequence'); // run tasks in sequence
var clean = require('gulp-clean'); // cleaning directories
var del = require('del');
var vinylPaths = require('vinyl-paths');

var config = {
paths: {
Expand All @@ -15,7 +16,7 @@ var config = {

gulp.task('clean', function () {
return gulp.src(config.paths.dist, {read: false})
.pipe(clean());
.pipe(vinylPaths(del));
});

// move html to dist folder and reload browser immediately
Expand Down
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,20 +46,20 @@
"cookie-parser": "^1.3.3",
"express": "^4.11.2",
"flux": "^2.1.1",
"history": "1.13.0",
"history": "^1.13.0",
"jquery": "^2.1.4",
"keymirror": "0.1.1",
"keymirror": "^0.1.1",
"lodash": "^3.10.1",
"moment": "2.10.6",
"moment": "^2.10.6",
"monk": "^0.9.1",
"morgan": "^1.5.1",
"node-uuid": "^1.4.7",
"object-assign": "^4.0.1",
"promise": "^7.1.1",
"query-params": "0.0.1",
"react": "^0.14.2",
"react-dom": "0.14.2",
"react-router": "1.0.0",
"react-dom": "^0.14.2",
"react-router": "^1.0.0",
"snapjs": "^1.2.1",
"superagent": "^1.6.1",
"toastr": "^2.1.2",
Expand All @@ -74,9 +74,9 @@
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.4.1",
"css-loader": "^0.23.1",
"del": "^2.2.0",
"file-loader": "^0.8.5",
"gulp": "^3.9.0",
"gulp-clean": "^0.3.1",
"json-loader": "^0.5.4",
"less": "^2.5.3",
"less-loader": "^2.2.2",
Expand All @@ -86,12 +86,13 @@
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"vinyl-paths": "^2.1.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"engines": {
"node": "0.10.x",
"npm": "1.2.32"
},
"license": "Apache"
"license": "Apache-2.0"
}

0 comments on commit 7f1b250

Please sign in to comment.