-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 953 Bytes
/
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
{
"name": "custom-router",
"version": "1.0.4",
"description": "Customizable request router",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "",
"build": "babel src -d dist",
"prepare": "npm run build",
"prepublishOnly": "npm version patch",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joelvh/custom-router.git"
},
"keywords": [
"node",
"http",
"request",
"router",
"path"
],
"author": "Joel Van Horn",
"license": "MIT",
"bugs": {
"url": "https://github.com/joelvh/custom-router/issues"
},
"homepage": "https://github.com/joelvh/custom-router#readme",
"dependencies": {
"route-parser": "^0.0.5"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"devolution": "^1.1.2"
}
}