-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.48 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.48 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
54
55
56
{
"name": "@loopback/testlab",
"description": "A collection of test utilities we use to write LoopBack tests.",
"version": "8.0.6",
"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": "packages/testlab"
},
"engines": {
"node": "20 || 22 || 24"
},
"scripts": {
"build": "lb-tsc",
"clean": "lb-clean loopback-testlab*.tgz dist *.tsbuildinfo package",
"pretest": "npm run build",
"test": "lb-mocha \"dist/__tests__/**/*.js\"",
"verify": "npm pack && tar xf loopback-testlab*.tgz && tree package && npm run clean"
},
"publishConfig": {
"access": "public"
},
"files": [
"README.md",
"dist",
"fixtures",
"should-as-function.d.ts",
"src",
"!*/__tests__"
],
"dependencies": {
"@hapi/shot": "^6.0.2",
"@types/express": "^4.17.25",
"@types/fs-extra": "^11.0.4",
"@types/shot": "^4.0.5",
"@types/sinon": "^17.0.4",
"@types/supertest": "^2.0.16",
"express": "^4.22.1",
"fs-extra": "^11.3.2",
"oas-validator": "^5.0.8",
"should": "^13.2.3",
"sinon": "^21.0.0",
"supertest": "^7.1.4",
"tslib": "^2.8.1"
},
"devDependencies": {
"@loopback/build": "^12.0.6",
"@loopback/eslint-config": "^16.0.1",
"@types/node": "^16.18.126"
}
}