Created initial project config and dependencies files

This commit is contained in:
Alicia Sykes
2015-07-31 21:54:50 +01:00
parent f3c042e342
commit 4bef537323
2 changed files with 84 additions and 0 deletions

35
bower.json Normal file
View File

@@ -0,0 +1,35 @@
{
"name": "twitter-sentiment-visualisation",
"version": "0.0.0",
"authors": [
"alicia@aliciasykes.com"
],
"description": "A series of data visualisations showing overall sentiment from Tweets by location and/or topic",
"main": "app.js",
"moduleType": [
"node"
],
"keywords": [
"awesome",
"twitter",
"sentiment-analysis",
"d3",
"visualisation",
"data"
],
"license": "MIT",
"homepage": "http://twitter-sentiment-visualisation.as93.net",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"polymer": "Polymer/polymer#1.0.0",
"google-map": "GoogleWebComponents/google-map#~1.0.3",
"jquery": "~2.1.4",
"materialize": "~0.97.0"
}
}

49
package.json Normal file
View File

@@ -0,0 +1,49 @@
{
"name": "twitter-sentiment-visualisation",
"description": "A series of data visualisations showing overall sentiment from Tweets by location and/or topic",
"author": "Alicia Sykes <alicia@aliciasykes.com>",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/Lissy93/twitter-sentiment-visualisation"
},
"bugs": {
"url": "https://github.com/Lissy93/twitter-sentiment-visualisation/issues"
},
"dependencies": {
"body-parser": "~1.12.0",
"cookie-parser": "~1.3.4",
"debug": "~2.1.1",
"express": "~4.12.2",
"jade": "~1.9.2",
"morgan": "~1.5.1",
"serve-favicon": "~2.2.0"
},
"devDependencies": {
"browser-sync": "^2.8.0",
"del": "^1.2.0",
"event-stream": "^3.3.1",
"gulp": "^3.9.0",
"gulp-changed": "^1.2.1",
"gulp-coffee": "^2.3.1",
"gulp-coffeelint": "^0.5.0",
"gulp-concat": "^2.6.0",
"gulp-csslint": "^0.1.5",
"gulp-filesize": "0.0.6",
"gulp-footer": "^1.0.5",
"gulp-jshint": "^1.11.2",
"gulp-less": "^3.0.3",
"gulp-minify-css": "^1.2.0",
"gulp-nodemon": "^2.0.3",
"gulp-uglify": "^1.2.0",
"gulp-uncss": "^1.0.2",
"gulp-util": "^3.0.6",
"jshint-stylish": "^2.0.1"
},
"license": "MIT"
}