-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.24 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
{
"name": "@oncehub/request-migrations",
"version": "1.0.0",
"description": "A Node.js middleware library for Express to simplify API versioning.",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "tsx --test --experimental-test-coverage --enable-source-maps test/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scheduleonce/request-migrations.git"
},
"keywords": [
"api",
"versioning",
"middleware",
"express",
"nodejs",
"typescript",
"migration",
"backward-compatibility"
],
"author": "Michael DeRazon",
"license": "MIT",
"bugs": {
"url": "https://github.com/scheduleonce/request-migrations/issues"
},
"homepage": "https://github.com/scheduleonce/request-migrations#readme",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^22.10.2",
"express": "^4.17.21",
"tsx": "^4.7.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"express": ">=4.0.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"path-to-regexp": "^8.2.0"
}
}