-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.6 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
{
"name": "emvici-router",
"version": "0.0.11",
"description": "High Performance express/connect pluggable router middleware",
"main": "index.js",
"scripts": {
"test": "node node_modules/mocha/bin/mocha --globals setImmediate,clearImmediate --check-leaks --colors -t 10000 --reporter spec $(find test/* -name '*.test.js')"
},
"repository": {
"type": "git",
"url": "https://github.com/emvici/router.git"
},
"keywords": [
"connect",
"express",
"router",
"promise",
"bluebird",
"wizard",
"simple",
"routes",
"route",
"paths",
"uri",
"findhit",
"emvici",
"middleware"
],
"author": "José Moreira <jose.moreira@findhit.com>",
"contributors": [
{
"name": "José Moreira",
"email": [
"jose.moreira@findhit.com",
"jmoreira@microdual.com"
]
},
{
"name": "António Loureiro",
"email": [
"ajbloureiro@findhit.com",
"ajb.loureiro@gmail.com"
]
},
{
"name": "Bruno Casanova",
"email": [
"bruno@findhit.com",
"deftonicks_me@hotmail.com"
]
}
],
"license": "GPL v3",
"bugs": {
"url": "https://github.com/emvici/router/issues"
},
"homepage": "https://github.com/emvici/router",
"dependencies": {
"bluebird": "^2.9.14",
"debug": "^2.1.3",
"findhit-util": "^0.2.7",
"stack-queue": "0.0.6"
},
"devDependencies": {
"chai": "^1.10.0",
"connect": "^3.3.3",
"express": "^4.10.6",
"express-session": "^1.10.1",
"mocha": "^2.0.1",
"sinon": "^1.12.2",
"supertest": "^0.15.0"
}
}