This repository was archived by the owner on Jul 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.6 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.6 KB
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 <[email protected]>",
"license": "AGPL-3.0",
"engines": {
"node": "4.1.1"
},
"dependencies": {
"atob": "^2.0.0",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"btoa": "^1.1.2",
"bunyan": "^1.8.12",
"co": "^4.0",
"connect-mongo": "^2.0.0",
"debug": "^3.1.0",
"express": "^4.16.2",
"express-session": "^1.15.6",
"github": "^0.2.4",
"hat": "^0.0.3",
"he": "^1.1.1",
"jade": "^1.8.2",
"js-yaml": "^3.10.0",
"mongodb": "^2.2.33",
"morgan": "^1.9.0",
"node-uuid": "^1.4.8",
"nodemailer": "^4.4.0",
"parse-color": "^1.0.0",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-github": "^1.0.0",
"passport-twitter": "^1.0.3",
"redis": "^2.8.0",
"redis-lock": "^0.1.4",
"utf8": "^3.0.0",
"validator": "^9.1.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"bower": "^1.8.2",
"grunt": "^1.0.1",
"grunt-browserify": "^5.2.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-cssmin": "^2.2.1",
"grunt-contrib-uglify": "^3.2.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-inline": "~0.3.6",
"jshint": "^2.9.5",
"mocha": "^4.0.1"
},
"jshintConfig": {
"globalstrict": "true",
"node": true,
"indent": 2,
"quotmark": "single",
"esnext": true
}
}