-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.82 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
{
"name": "@the-teacher/the-router",
"version": "0.9.1",
"type": "module",
"description": "Simple router for Express.js, making routes and actions easy to manage.",
"publishConfig": {
"access": "public"
},
"main": "src/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "rm -rf src/* && touch src/.keep && node build.mjs",
"test": "jest",
"test:watch": "jest --watch",
"dev": "node build.mjs --watch",
"lint": "eslint src.ts",
"lint:fix": "eslint src.ts --fix",
"coverage": "jest --coverage",
"test-all": "yarn lint && yarn format:check && yarn test",
"format": "prettier --write \"src.ts/**/*.{ts,js}\"",
"format:check": "prettier --check \"src.ts/**/*.{ts,js}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-teacher/the-router.git"
},
"keywords": [
"express",
"router",
"routing",
"express-router",
"@the-teacher/the-router",
"rails-inspired",
"lightweight",
"nodejs",
"controllers",
"routes",
"route-management",
"express-routing"
],
"author": "Ilya N. Zykin",
"license": "MIT",
"bugs": {
"url": "https://github.com/the-teacher/the-router/issues"
},
"homepage": "https://github.com/the-teacher/the-router#readme",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2",
"prettier": "^3.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3"
},
"dependencies": {
"express": "^4.18.3"
}
}