This repository has been archived by the owner on Feb 17, 2024. It is now read-only.
forked from PatrickJS/Reddit-Insight
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.63 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "Reddit-Insight",
"version": "2.0.0",
"private": true,
"description": "An analytics suite for Reddit.com using their public API, combined with real-time data analysis and graphic visualizations of historical data.",
"keywords": [
"reddit",
"insight",
"analytics",
"reddit analytics",
"reddit insight"
],
"author": [
{
"name": "Patrick Stapleton",
"email": "[email protected]",
"url": "www.gdi2290.com"
}
],
"scripts": {
"prepublish": "node npm-scripts prepublish",
"postpublish": "node npm-scripts postpublish",
"preinstall": "node npm-scripts preinstall",
"postinstall": "node npm-scripts postinstall",
"preuninstall": "node npm-scripts preuninstall",
"postuninstall": "node npm-scripts postuninstall",
"preupdate": "node npm-scripts preupdate",
"postupdate": "node npm-scripts postupdate",
"prestart": "node npm-scripts prestart",
"poststart": "node npm-scripts poststart",
"start": "nodemon --harmony server.js",
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "http://github.com/gdi2290/Reddit-Insight.git"
},
"licenses": [
{
"type": "MIT"
}
],
"dependencies": {
"express": "latest",
"jade": "latest",
"cors": "latest",
"longjohn": "latest"
},
"devDependencies": {
"connect-livereload": "latest",
"load-grunt-tasks": "latest",
"time-grunt": "latest",
"grunt": "latest",
"grunt-contrib-copy": "latest",
"grunt-contrib-concat": "latest",
"grunt-contrib-uglify": "latest",
"grunt-contrib-compass": "latest",
"grunt-contrib-jshint": "latest",
"grunt-contrib-cssmin": "latest",
"grunt-contrib-connect": "latest",
"grunt-contrib-clean": "latest",
"grunt-contrib-htmlmin": "latest",
"grunt-contrib-imagemin": "latest",
"grunt-contrib-watch": "latest",
"grunt-contrib-stylus": "latest",
"grunt-nodemon": "latest",
"grunt-autoprefixer": "latest",
"grunt-complexity": "latest",
"grunt-ngmin": "latest",
"grunt-usemin": "latest",
"grunt-svgmin": "latest",
"grunt-rev": "latest",
"grunt-open": "latest",
"grunt-concurrent": "latest",
"grunt-karma": "latest",
"karma": "latest",
"karma-jasmine": "latest",
"karma-ng-scenario": "latest",
"karma-script-launcher": "latest",
"karma-firefox-launcher": "latest",
"karma-chrome-launcher": "latest",
"karma-html2js-preprocessor": "latest",
"karma-phantomjs-launcher": "latest",
"karma-safari-launcher": "latest",
"karma-ng-html2js-preprocessor": "latest"
},
"engines": {
"node": "0.11.x",
"npm": "1.3.x"
}
}