-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
69 lines (69 loc) · 2.05 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "tweet-map",
"version": "0.1.0",
"author": "Martin Micunda <[email protected]>",
"description": "A Node.js webapp which generates a real-time heatmap of the most recent 1000 Irish tweets on a google map",
"homepage": "http://tweet-map.herokuapp.com",
"private": true,
"scripts": {
"start": "node app.js",
"test": "TODO: add test command",
"deploy": "TODO: add deploy command",
"postinstall": "node node_modules/bower/bin/bower install"
},
"main": "./server/app/server.js",
"repository": {
"type": "git",
"url": "https://github.com/martinmicunda/tweet-map"
},
"bugs": {
"url": "https://github.com/martinmicunda/tweet-map/issues"
},
"keywords": [
"tweet",
"map"
],
"dependencies": {
"grunt": "0.4.2",
"bower": "1.2.8",
"grunt-bower-install": "0.7.0",
"express": "3.4.7",
"socket.io": "0.9.16",
"ntwitter": "0.5.0",
"jade": "0.35.0",
"stylus": "0.41.0",
"nib": "1.0.1",
"nconf": "0.6.9",
"load-grunt-tasks": "0.2.0"
},
"devDependencies": {
"open": "0.0.4",
"karma-firefox-launcher": "0.1.0",
"karma-chrome-launcher": "0.1.0",
"karma-junit-reporter": "0.1.0",
"karma-jasmine": "0.1.3",
"grunt-karma": "0.7.1",
"protractor": "0.14.0",
"grunt-shell": "0.6.1",
"grunt-protractor-runner": "0.1.11",
"grunt-connect": "0.2.0",
"grunt-contrib-watch": "0.5.3",
"grunt-contrib-clean": "0.5.0",
"grunt-contrib-concat": "0.3.0",
"grunt-contrib-uglify": "0.2.7",
"grunt-contrib-jshint": "0.7.2",
"grunt-contrib-csslint": "0.2.0",
"grunt-contrib-imagemin": "0.4.0",
"jshint-stylish": "0.1.4"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/martinmicunda/tweet-map/master/LICENSE"
}
],
"engines": {
"node": ">=0.8",
"npm": "1.1.x"
}
}