-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.34 KB
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": "@loopback/rest-msgpack",
"description": "Body parser to handle MessagePack requests in LoopBack 4.",
"version": "0.12.12",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "IBM Corp. and LoopBack contributors",
"copyright.owner": "IBM Corp. and LoopBack contributors",
"repository": {
"type": "git",
"url": "https://github.com/loopbackio/loopback-next.git",
"directory": "bodyparsers/rest-msgpack"
},
"engines": {
"node": "20 || 22 || 24"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"pretest": "npm run clean && npm run build",
"test": "lb-mocha \"dist/__tests__/**/*.js\"",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache"
},
"publishConfig": {
"access": "public"
},
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"peerDependencies": {
"@loopback/core": "^7.0.1",
"@loopback/rest": "^15.0.1"
},
"dependencies": {
"msgpack5": "^6.0.2",
"tslib": "^2.8.1",
"type-is": "^2.0.1"
},
"devDependencies": {
"@loopback/build": "^12.0.11",
"@loopback/core": "^7.0.11",
"@loopback/rest": "^15.0.12",
"@loopback/testlab": "^8.0.11",
"@types/msgpack5": "^3.4.6",
"@types/node": "^20.19.39",
"@types/type-is": "^1.6.7",
"typescript": "~5.9.3"
}
}