-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "kpjs-blog",
"version": "0.1.0",
"description": "Minimalistic blogging solution",
"keywords": [
"kpjs",
"blog"
],
"dependencies": {
"body-parser": "^1.15.2",
"connect-busboy": "0.0.2",
"express": "^4.14.0",
"express-session": "^1.14.0",
"hbs": "^4.0.0",
"mongodb": "^2.2.8",
"node-schedule": "^1.1.1",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-github": "^1.1.0",
"passport-google-oauth": "^1.0.0",
"passport-twitter": "^1.0.4",
"session-file-store": "0.2.1",
"winston": "^2.2.0"
},
"devDependencies": {
"jscs": "^3.0.7",
"jshint": "^2.9.3",
"mocha": "^3.0.2"
},
"main": "server.js",
"scripts": {
"start": "node app.js",
"pretest": "jshint --verbose --extract=auto server.js scheduler.js app.js controllers/ views/",
"test": "mocha tests/ --reporter spec",
"posttest": "jscs --verbose server.js scheduler.js app.js controllers/"
},
"engines": {
"node": ">=4.2.0 <5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/KPJS/blog.git"
},
"bugs": {
"url": "https://github.com/KPJS/blog/issues"
},
"homepage": "http://kpjs.azurewebsites.net",
"license": "Unlicense"
}