-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 814 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 814 Bytes
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
{
"name": "@parallelworks/fsrouter",
"type": "commonjs",
"version": "0.1.8",
"description": "Filesystem based router for Express.js",
"author": "Michael McQuade",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": "git@github.com:parallelworks/fsrouter.git",
"scripts": {
"compile": "tsc",
"test": "jest"
},
"license": "UNLICENSED",
"devDependencies": {
"@types/express": "^4.17.25",
"@types/express-serve-static-core": "^4.19.8",
"@types/jest": "^29.5.14",
"express": "^4.22.1",
"jest": "^29.7.0",
"ts-jest": "^29.4.6",
"typescript": "^4.9.5"
},
"peerDependencies": {
"express": "^4.17.1"
},
"dependencies": {
"ajv": "^8.18.0",
"ajv-errors": "^3.0.0",
"glob": "^9.3.5",
"json-schema-to-ts": "^2.12.0"
}
}