-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.77 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
{
"name": "@volebo/express",
"version": "0.8.4",
"description": "ExpressJS server for volebo.net",
"license": "GPL-3.0",
"private": false,
"publishConfig": {
"access": "public"
},
"author": {
"name": "volebo",
"url": "http://volebo.net"
},
"contributors": [
{
"name": "Maksim Koryukov",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/volebo/express.git"
},
"bugs": {
"url": "https://github.com/volebo/express/issues"
},
"homepage": "https://github.com/volebo/express",
"keywords": [
"express",
"expressjs",
"volebo.net",
"volebo"
],
"os": [
"linux"
],
"engines": {
"node": ">=6.0.0",
"npm": ">=5.0.0"
},
"main": "src/index.js",
"scripts": {
"test": "`npm bin`/mocha",
"lint": "`npm bin`/eslint ./",
"coverage": "`npm bin`/istanbul cover `npm bin`/_mocha -- --reporter min"
},
"dependencies": {
"body-parser": "^1.18.2",
"bunyan": "^1.8.12",
"debug": "^3.1.0",
"express": "^4.16.3",
"express-bunyan-logger": "^1.3.3",
"express-flash": "0.0.2",
"express-handlebars": "^3.0.0",
"express-mw-lang": "^2.0.2",
"express-session": "^1.15.6",
"gelf-stream": "^1.1.1",
"handlebars-helpers": "^0.10.0",
"handlebars-intl": "^1.1.2",
"helmet": "^3.12.0",
"intl": "^1.2.5",
"js-yaml": "^3.11.0",
"lodash": "^4.17.5",
"messageformat": "^1.1.1",
"moment": "^2.22.0",
"nconf": "^0.10.0",
"passport": "^0.4.0",
"raven": "^2.4.2"
},
"devDependencies": {
"@volebo/mocha-helpers": "^0.1.0",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-volebo": "^2.3.3",
"istanbul": "0.4.x",
"mocha": "^5.0.5",
"supertest": "^3.0.0"
}
}