forked from senecajs/seneca-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.15 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
{
"name": "seneca-web",
"description": "Http route mapping for Seneca microservices.",
"version": "2.0.0",
"keywords": [
"seneca",
"web",
"plugin"
],
"author": "Richard Rodger (https://github.com/rjrodger)",
"contributors": [
"Mircea Alexandru (http://alexandrumircea.ro)",
"Dean McDonnell (http://github.com/mcdonnelldean)",
"Mihai Dima (https://github.com/mihaidma)",
"Michael Robinson (https://github.com/faceleg)",
"Wyatt Preul (https://github.com/geek)",
"Cristian Kiss (https://github.com/ckiss)",
"Shane Lacey (https://github.com/shanel262)",
"William P. Riley-Land (https://github.com/wprl)",
"Adrien Becchis (https://github.com/AdrieanKhisbe)",
"Marius Ursache (https://github.com/bamse16)",
"Vito Tardia (https://github.com/vtardia)",
"Michele Capra (https://github.com/piccoloaiutante)",
"David Mark Clements (https://github.com/davidmarkclements)",
"Reto Inderbitzin (https://github.com/indr)",
"David Gonzalez (http://github.com/dgonzalez)",
"Tyler Waters (https://github.com/tswaters)"
],
"license": "MIT",
"main": "web.js",
"scripts": {
"test": "lab -v -L -t 85 -m 5000",
"coveralls": "lab -s -r lcov | coveralls",
"coverage": "lab -v -L -r html > docs/coverage.html",
"annotate": "docco web.js -o docs/annotated"
},
"files": [
"LICENSE",
"README.md",
"web.js",
"lib"
],
"dependencies": {
"eraro": "^0.4.1",
"lodash": "^4.15.0"
},
"devDependencies": {
"body-parser": "^1.15.2",
"code": "^4.0.0",
"connect": "^3.5.0",
"cookie-parser": "^1.4.3",
"coveralls": "^2.11.12",
"docco": "^0.7.0",
"eslint-config-seneca": "^3.0.0",
"eslint-plugin-hapi": "^4.0.0",
"eslint-plugin-standard": "^2.0.0",
"express": "^4.14.0",
"express-session": "^1.14.1",
"hapi": "^15.0.3",
"hapi-auth-basic": "^4.2.0",
"lab": "^11.0.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pre-commit": "^1.1.3",
"request": "^2.74.0",
"seneca": "plugin"
},
"repository": {
"type": "git",
"url": "https://github.com/senecajs/seneca-web.git"
},
"pre-commit": [
"test"
]
}