-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.63 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@bessonovs/node-http-router",
"version": "2.3.0",
"description": "Extensible http router for node and micro",
"keywords": [
"router",
"routing",
"route",
"micro",
"match",
"request",
"api",
"rest",
"typescript",
"javascript",
"nodejs",
"http",
"server"
],
"author": "Anton Bessonov",
"license": "MIT",
"repository": "bessonov/node-http-router",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"lint": "eslint . --ext .ts,.js",
"build": "tsc",
"example-node-start": "tsc && node dist/examples/node.js",
"example-micro-start": "tsc && node dist/examples/micro.js",
"precommit": "pnpm test && pnpm run lint && pnpm run build",
"update": "pnpm update --interactive --recursive --latest"
},
"dependencies": {
"urlite": "3.0.1"
},
"devDependencies": {
"@bessonovs/eslint-config": "0.0.7",
"@types/express": "4.17.14",
"@types/jest": "29.2.4",
"@types/node": "18.11.11",
"@typescript-eslint/eslint-plugin": "5.45.1",
"@typescript-eslint/parser": "5.45.1",
"eslint": "8.29.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.11",
"jest": "29.3.1",
"micro": "10.0.1",
"node-mocks-http": "1.12.1",
"path-to-regexp": "6.2.1",
"ts-jest": "29.0.3",
"ts-toolbelt": "9.6.0",
"typescript": "4.9.3"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@7.14.0",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"eslint-plugin-react-hooks"
]
}
}
}