-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 951 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 951 Bytes
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
{
"name": "simple-router",
"version": "0.4.2",
"description": "Simple-router is a middleware-compatible router with support for promises.",
"main": "lib/index.js",
"types": "index.d.ts",
"dependencies": {
"@types/express": "^4.16.0",
"bluebird": "^2.3.10",
"connect-stack": "~0.1.6",
"fast-url-parser": "^1.0.6-0",
"querystringparser": "^0.1.1"
},
"devDependencies": {
"blue-tape": "^1.0.0",
"tape": "~2.3.2",
"through2": "^0.4.1"
},
"scripts": {
"test": "node test/index.js"
},
"keywords": [
"router",
"promises",
"middleware",
"express",
"connect"
],
"author": "spion",
"license": "MIT",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git://github.com/doxout/simple-router.git"
},
"bugs": {
"url": "https://github.com/doxout/simple-router/issues"
},
"homepage": "https://github.com/doxout/simple-router"
}