-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.11 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
{
"name": "passort-js-example",
"version": "1.0.0",
"description": "passort.js example",
"main": "server.js",
"scripts": {
"clean": "rimraf docs",
"lint": "standard --verbose | snazzy",
"pretest": "npm run lint",
"test": "mocha",
"doc": "docco -o docs *.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Madadata/passort-js-example.git"
},
"keywords": [
"passport.js",
"example"
],
"author": "Jiayu Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/Madadata/passort-js-example/issues"
},
"homepage": "https://github.com/Madadata/passort-js-example#readme",
"dependencies": {
"body-parser": "^1.15.2",
"connect-flash": "^0.1.1",
"express": "^4.14.0",
"express-session": "^1.14.1",
"morgan": "^1.7.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0"
},
"devDependencies": {
"docco": "^0.7.0",
"ghooks": "^1.3.2",
"mocha": "^3.1.0",
"rimraf": "^2.5.4",
"snazzy": "^5.0.0",
"standard": "^8.3.0"
},
"ghooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
}