forked from jenkoian/hacktoberfest-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 988 Bytes
/
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
{
"name": "hacktoberfest-checker",
"version": "3.0.0",
"description": "Small app to see if you have fulfilled the requirements for a Hacktoberfest t-shirt",
"main": "index.js",
"engines": {
"node": "^6.11.1"
},
"scripts": {
"start": "node index.js",
"eslint": "eslint controllers/**/*.js public/**/*.js index.js",
"eslint-fix": "eslint controllers/**/*.js public/**/*.js index.js --fix"
},
"keywords": [
"hacktoberfest"
],
"author": "Ian Jenkins",
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.1",
"compression": "^1.6.2",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"express-flash": "0.0.2",
"express-handlebars": "^3.0.0",
"github": "^11.0.0",
"helper-timeago": "^0.1.0",
"lodash": "^4.17.4",
"method-override": "^2.3.5",
"morgan": "^1.7.0",
"q": "^1.5.0"
},
"devDependencies": {
"eslint": "^4.8.0"
},
"repository": "[email protected]:jenkoian/hacktoberfest-checker.git"
}