forked from pillarjs/path-to-regexp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 976 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
{
"name": "@alloc/path-to-regexp",
"type": "module",
"version": "8.2.0",
"description": "Express style path to RegExp utility",
"keywords": [
"express",
"regexp",
"route",
"routing"
],
"repository": {
"type": "git",
"url": "https://github.com/alloc/path-to-regexp.git"
},
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist/"
],
"scripts": {
"bench": "vitest bench",
"build": "rimraf dist && tsup",
"dev": "rimraf dist && tsup --sourcemap --watch",
"lint": "tsc -p . --outDir node_modules/.tmp",
"prepublishOnly": "pnpm -s build",
"test": "vitest"
},
"devDependencies": {
"@types/node": "^22.7.2",
"@vitest/coverage-v8": "^2.1.1",
"recheck": "^4.4.5",
"rimraf": "^6.0.1",
"tsup": "^8.3.0",
"typescript": "^5.5.3",
"vitest": "^2.1.2"
},
"engines": {
"node": ">=16"
}
}