-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.71 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
{
"name": "@hapi/lab",
"description": "Test utility",
"version": "26.0.0",
"repository": "git://github.com/hapijs/lab",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=18"
},
"keywords": [
"test",
"runner"
],
"files": [
"bin/lab",
"lib"
],
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.25.1",
"@hapi/bossy": "^6.0.0",
"@hapi/eslint-plugin": "^7.0.0",
"@hapi/hoek": "^11.0.2",
"diff": "^5.0.0",
"eslint": "9.x.x",
"find-rc": "4.x.x",
"globby": "^11.1.0",
"handlebars": "4.x.x",
"mo-walk": "^1.2.0",
"seedrandom": "3.x.x",
"source-map": "0.7.x",
"source-map-support": "0.5.x",
"supports-color": "^8.1.1",
"will-call": "1.x.x"
},
"peerDependencies": {
"@hapi/eslint-plugin": "^7.0.0",
"typescript": ">=4.4.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@hapi/code": "^9.0.0",
"@hapi/somever": "^4.0.0",
"@types/eslint": "^9.6.0",
"@types/node": "^18.11.17",
"cpr": "3.x.x",
"lab-event-reporter": "1.x.x",
"semver": "7.x.x",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.5.4",
"typescript-eslint": "^8.1.0"
},
"bin": {
"lab": "./bin/lab"
},
"scripts": {
"test": "node ./bin/_lab -f -L -t 100 -m 10000 --types-test test/index.ts",
"test-cov-html": "node ./bin/_lab -f -L -r html -m 10000 -o coverage.html"
},
"license": "BSD-3-Clause"
}