-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 971 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 971 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
{
"name": "mux-router",
"version": "1.0.10",
"description": "Get the avaliable routes on your Micro Service Node App and import the same routes in other Gateway Node App.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aslamcode/mux-router.git"
},
"keywords": [
"mux-router",
"router",
"mux",
"routes",
"express"
],
"author": "Guilherme Martins Arantes",
"license": "MIT",
"bugs": {
"url": "https://github.com/aslamcode/mux-router.git"
},
"homepage": "https://github.com/aslamcode/mux-router#readme",
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0",
"typescript": "^3.0.1"
},
"dependencies": {
"@types/express": "github:types/express",
"@types/node": "^10.11.7",
"@types/request": "^2.47.1",
"express": "^4.16.4",
"express-http-proxy": "^1.4.0",
"request": "^2.88.0"
}
}