forked from pillarjs/path-match
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1019 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
42
43
44
45
{
"name": "path-match",
"description": "wrapper around path-to-regexp for easy route parameters",
"version": "1.2.4",
"author": {
"name": "Jonathan Ong",
"email": "[email protected]",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"keywords": [
"route",
"router",
"routing",
"path",
"regex",
"regexp",
"param",
"params"
],
"license": "MIT",
"repository": "pillarjs/path-match",
"dependencies": {
"http-errors": "~1.4.0",
"path-to-regexp": "^1.0.0"
},
"devDependencies": {
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^25.3.0"
},
"scripts": {
"eslint": "eslint . --ignore-path .gitignore",
"test": "jest"
},
"files": [
"index.js"
]
}