This repository has been archived by the owner on Apr 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
84 lines (84 loc) · 2.05 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
{
"name": "assignees",
"version": "1.2.0",
"description": "Code reviews for everyone.",
"private": true,
"license": "MIT",
"scripts": {
"start": "node --harmony app.js",
"test": "NODE_ENV=test mocha --harmony --reporter spec --recursive",
"assignees": "node bin/assignees"
},
"dependencies": {
"async": "^2.1.2",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.15.2",
"chalk": "^1.1.3",
"cheerio": "^0.22.0",
"clockwork": "^0.1.4",
"commander": "~2.9.0",
"compression": "^1.6.2",
"connect-mongo": "^1.3.2",
"d3-format": "~1.0.2",
"deck": "~0.0.4",
"express": "^4.14.0",
"express-flash": "^0.0.2",
"express-request-id": "~1.2.0",
"express-session": "^1.14.2",
"express-sslify": "~1.2.0",
"express-status-monitor": "^0.1.5",
"express-validator": "^3.1.2",
"github": "8.1.0",
"lastfm": "^0.9.2",
"lob": "^3.9.0",
"lodash": "^4.16.6",
"lusca": "^1.4.1",
"moment": "^2.22.1",
"mongoose": "^4.6.6",
"multer": "^1.2.0",
"node-sass": "^4.5.3",
"node-sass-middleware": "^0.10.0",
"nodemailer": "^2.6.4",
"octicons": "~5.0.1",
"passport": "0.3.2",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0",
"passport-oauth": "^1.0.0",
"pug": "^2.0.0-beta6",
"request": "^2.78.0",
"validator": "^6.1.0"
},
"devDependencies": {
"chai": "^3.5.0",
"errorhandler": "~1.5.0",
"eslint": "^3.9.1",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.1.0",
"mocha": "^3.1.2",
"morgan": "~1.7.0",
"nock": "~9.0.2",
"sinon": "^1.17.6",
"sinon-as-promised": "~4.0.2",
"sinon-mongoose": "^1.3.0",
"supertest": "^2.0.1"
},
"eslintConfig": {
"extends": "airbnb-base",
"rules": {
"consistent-return": 0,
"comma-dangle": 0,
"no-param-reassign": 0,
"no-underscore-dangle": 0,
"no-shadow": 0,
"no-plusplus": 0,
"max-len": [
"error",
120
]
}
},
"engines": {
"node": "8.x || 9.x",
"yarn": "1.x"
}
}