-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.58 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": "express-otter",
"version": "1.2.0",
"description": "A lightning fast automatic router-registration solution for express applications.",
"module": "index.ts",
"author": "James Schinwald",
"license": "MIT",
"scripts": {
"clean": "rm -rf ./dist/*",
"build": "npm run clean && tsc -p ./tsconfig-commonjs.json && tsc -p ./tsconfig-esm.json",
"test": "ts-mocha ./tests/**/*.ts",
"prepack": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/schinwald/express-otter.git"
},
"keywords": [
"express",
"automatic",
"router",
"routing",
"file",
"file-system",
"file-based",
"folder",
"folder-based",
"path",
"dynamic",
"static",
"typescript",
"nextjs"
],
"files": [
"dist"
],
"main": "dist/commonjs/index.js",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/commonjs/index.js"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node-fetch": "^2.6.4",
"@types/ws": "^8.5.5",
"chai": "^4.3.7",
"commitizen": "^4.3.0",
"mocha": "^10.2.0",
"node-fetch": "^2.6.12",
"release-please": "^15.13.0",
"ts-mocha": "^10.0.0",
"typescript": "^5.1.6",
"ws": "^8.13.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@types/express": "^4.17.17",
"express": "^4.18.2",
"pino": "^8.15.0",
"pino-pretty": "^10.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}