This repository has been archived by the owner on Oct 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
91 lines (91 loc) · 2.53 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
{
"author": "Nicolas Carlier (https://github.com/ncarlier/)",
"name": "keeper",
"version": "1.0.0",
"description": "Your personal content curation service.",
"license": "gplv3",
"homepage": "http://keeper.nunux.org",
"apidoc": {
"title": "Nunux Keeper API documentation",
"url": "http://keeper.nunux.org",
"template": {
"withCompare": false
}
},
"repository": {
"type": "git",
"url": "https://github.com/ncarlier/nunux-keeper.git"
},
"scripts": {
"start": "node server/app",
"debug": "node-inspector & node --debug server/app",
"test": "grunt",
"postinstall": "grunt dist",
"resource-downloader": "node server/daemons/resource-downloader -v",
"document-updater": "APP_DOWNLOADER=disabled node server/jobs/document-updater -v"
},
"dependencies": {
"JSONStream": "0.7.x",
"body-parser": "1.0.x",
"bunyan": "1.1.x",
"commander": "2.2.x",
"compression": "1.0.x",
"connect-redis": "2.0.x",
"cookie-parser": "1.0.x",
"cookie-session": "1.0.x",
"ejs": "1.0.0",
"express": "4.1.x",
"express-session": "1.0.x",
"fs-extra": "0.8.x",
"gm": "1.16.x",
"jszip": "^3.0.0",
"knox": "0.9.x",
"less-middleware": "^2.0.1",
"method-override": "1.0.0",
"mime": "1.2.x",
"mongoose": "3.8.x",
"morgan": "1.0.0",
"multiparty": "3.2.x",
"newrelic": "*",
"node-readability": "2.1.x",
"oauth": "0.9.x",
"oauth2orize": "1.0.x",
"passport": "0.2.x",
"passport-browserid": "0.1.x",
"passport-google-oauth": "0.1.x",
"passport-http": "0.2.x",
"passport-http-bearer": "1.0.x",
"passport-local": "1.0.x",
"passport-oauth2-client-password": "0.1.x",
"raw-body": "*",
"redis": "0.10.x",
"request": "2.34.x",
"twit": "1.1.x",
"underscore": "1.6.x",
"validator": "3.11.x",
"webshot": "0.15.x",
"when": "3.1.x"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-cssmin": "^0.10.0",
"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-coffeelint": "0.0.10",
"grunt-usemin": "^2.2.0",
"grunt-bowercopy": "^1.1.0",
"grunt-sails-linker": "^0.9.5",
"mocha": "1.18.x",
"should": "3.3.x",
"grunt-mocha-test": "0.10.x",
"load-grunt-tasks": "^0.6.0",
"grunt-apidoc": "^0.7.0",
"grunt-blanket": "0.0.8",
"blanket": "^1.1.6"
}
}