-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.38 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
{
"name": "meta-router",
"description": "Declarative URL router for Express that provides support for associating metadata with a route.",
"main": "lib/index.js",
"scripts": {
"test": "node_modules/.bin/mocha --ui bdd --reporter spec ./test && node_modules/.bin/jshint lib/ middleware/"
},
"repository": {
"type": "git",
"url": "https://github.com/patrick-steele-idem/meta-router.git"
},
"keywords": [
"router",
"express",
"metadata",
"server",
"http"
],
"author": "Patrick Steele-Idem <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/patrick-steele-idem/meta-router/issues"
},
"homepage": "https://github.com/patrick-steele-idem/meta-router",
"dependencies": {
"babel-plugin-macros": "^2.5.1",
"jsonminify": "^0.2.3",
"path-to-regexp": "^1.0.1",
"raptor-async": "^1.1.1",
"raptor-util": "^1.0.10",
"resolve-from": "^1.0.0",
"shortstop": "^1.0.1",
"shortstop-handlers": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"babel-plugin-tester": "^6.0.1",
"chai": "^3.0.0",
"express": "^4.7.2",
"jshint": "^2.5.2",
"mocha": "^2.2.5",
"prettier": "^1.16.4",
"request": "^2.39.0"
},
"version": "4.0.0"
}