-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.11 KB
/
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
{
"name": "@suzulabo/path-matcher",
"version": "0.0.0",
"description": "Path matching utility",
"homepage": "https://github.com/suzulabo/path-matcher#readme",
"repository": {
"type": "git",
"url": "https://github.com/suzulabo/path-matcher.git"
},
"author": "Kenji Suzuki",
"keywords": [
"path",
"route"
],
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"scripts": {
"clean": "rm -rf dist",
"test": "jest",
"lint": "eslint src && prettier --check src",
"build": "tsc -p tsconfig.build.json"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"prettier": "^2.6.2",
"ts-jest": "^28.0.8",
"typescript": "^4.8.2"
}
}