-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
48 lines (48 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
46
47
48
{
"name": "regexparam",
"version": "3.0.0",
"repository": "lukeed/regexparam",
"description": "A tiny (399B) utility that converts route patterns into RegExp. Limited alternative to `path-to-regexp` πβ",
"unpkg": "dist/index.min.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "index.d.ts",
"license": "MIT",
"author": {
"name": "Luke Edwards",
"email": "[email protected]",
"url": "https://lukeed.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"build": "bundt",
"test": "uvu -r esm test"
},
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"*.d.ts",
"dist"
],
"keywords": [
"regexp",
"route",
"routing",
"inject",
"parse"
],
"devDependencies": {
"bundt": "1.1.2",
"esm": "3.2.25",
"uvu": "0.5.1"
}
}