This repository has been archived by the owner on Apr 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 1.8 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
{
"author": "Nicolas Carlier (https://github.com/ncarlier/)",
"name": "nunux-reader",
"version": "1.0.0",
"description": "The super-fast-minimalist-nosql-opensource Google Reader revival.",
"license": "gplv3",
"homepage": "http://reader.nunux.org",
"apidoc": {
"title": "Nunux Reader API documentation",
"url": "http://reader.nunux.org",
"template": {
"withCompare": false
}
},
"repository": {
"type": "git",
"url": "https://github.com/ncarlier/nunux-reader.git"
},
"scripts": {
"start": "node server/app | bunyan",
"debug": "node-inspector & node --debug server/app",
"test": "grunt",
"dist": "grunt install",
"feed-updater": "node server/daemon/feed-updater.js -v",
"timeline-updater": "node server/daemon/timeline-updater.js -v",
"db-cleaner": "node server/daemon/db-cleaner.js -v"
},
"dependencies": {
"async": "0.2.x",
"bunyan": "1.1.x",
"colors": "~0.6.2",
"commander": "*",
"cron": "^1.0.9",
"date-utils": "*",
"ejs": "*",
"express": "3.4.x",
"feedparser": "0.15.x",
"less-middleware": "0.1.x",
"newrelic": "*",
"node-keeper": "0.2.x",
"opmlparser": "0.5.x",
"passport": "^0.4.0",
"passport-google-oauth": "^1.0.0",
"redis": "^2.5.3",
"request": "2.27.x",
"underscore": "~1.5.2",
"when": "~3.0.0"
},
"devDependencies": {
"mocha": "~1.12.0",
"should": "~1.2.2",
"matchdep": "~0.1.2",
"grunt": "~0.4.1",
"grunt-cli": "~0.1.13",
"grunt-contrib-clean": "~0.5.0",
"grunt-bower-task": "~0.3.4",
"grunt-mocha-test": "~0.8.1",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-uglify": "~0.3.2",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-less": "~0.9.0",
"grunt-apidoc": "~0.7.0"
}
}