forked from jillro/commentit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.59 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
{
"name": "commentit",
"version": "1.0.5",
"description": "Commit comments with github pages !",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "jshint .; NODE_ENV=test mocha --reporter list --recursive;",
"build": "bower install && grunt"
},
"author": "Guillaume Royer <perso@guilro.com>",
"license": "AGPL-3.0",
"engines": {
"node": "4.1.1"
},
"dependencies": {
"atob": "^2.0.0",
"bluebird": "^3.3.3",
"body-parser": "^1.10.1",
"btoa": "^1.1.2",
"bunyan": "^1.4.0",
"co": "^4.0",
"connect-mongo": "^1.1.0",
"debug": "^2.1",
"express": "^4.10.6",
"express-session": "^1.10.2",
"github": "^0.2.4",
"hat": "^0.0.3",
"he": "^1.0.0",
"jade": "^1.8.2",
"js-yaml": "^3.2.5",
"mongodb": "^2.0.15",
"morgan": "^1.5.1",
"node-uuid": "^1.4.7",
"nodemailer": "^2.3.0",
"parse-color": "^1.0.0",
"passport": "^0.3.0",
"passport-facebook": "^2.0.0",
"passport-github": "^1.0.0",
"passport-twitter": "^1.0.3",
"redis": "^2.5.3",
"redis-lock": "^0.1.0",
"utf8": "^2.0.0",
"validator": "^5.1.0",
"yamljs": "^0.2.4"
},
"devDependencies": {
"bower": "^1.5.3",
"grunt": "^0.4.5",
"grunt-browserify": "^4.0.1",
"grunt-cli": "^0.1.13",
"grunt-contrib-cssmin": "^0.14.0",
"grunt-contrib-uglify": "^1.0.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-inline": "~0.3.6",
"jshint": "^2.5",
"mocha": "^2.1"
},
"jshintConfig": {
"globalstrict": "true",
"node": true,
"indent": 2,
"quotmark": "single",
"esnext": true
}
}