generated from idrinth-api-bench/project-defaults
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 1.98 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@idrinth-api-bench/cli",
"description": "A library to benchmark apis, no matter if rest or soap",
"license": "MIT",
"version": "1.0.2",
"type": "module",
"homepage": "https://idrinth-api-ben.ch",
"bugs": {
"url": "https://github.com/idrinth-api-bench/api-bench/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/idrinth-api-bench/cli.git"
},
"keywords": [
"api",
"rest",
"performance",
"benchmarking",
"typescript",
"cli",
"bench",
"benchmark",
"framework",
"typed",
"statistics",
"parallel",
"worker",
"async",
"loadtest",
"load-test",
"measure",
"open-api"
],
"author": "Björn Büttner",
"contributors": [],
"dependencies": {
"change-case": "^5.4.3",
"cli-progress": "^3.12.0",
"fs-extra": "^11.2.0",
"yaml": "^2.4.5"
},
"devDependencies": {
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.7",
"@types/cli-progress": "^3.11.5",
"@types/fs-extra": "^11.0.4",
"@types/mock-fs": "^4.13.4",
"@types/node": "^22.7.9",
"c8": "^10.1.2",
"chai": "^5.1.1",
"eslint": "^9.6.0",
"markdownlint-cli": "^0.42.0",
"mocha": "^10.5.2",
"mock-fs": "^5.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.5.2",
"@idrinth-api-bench/typescript-language-from-yaml": "^1.4.0",
"spellchecker-cli": "^7.0.0",
"knip": "^5.23.3"
},
"bin": {
"iabc": "bin/iabc.js"
},
"scripts": {
"lint": "eslint . --ext .js,.ts,.cjs,.json,.tsx",
"lint-fix": "eslint --fix . --ext .js,.ts,.cjs,.json",
"lint-md": "markdownlint *.md",
"test": "c8 mocha test",
"clear": "node tools/clear-js-files-from-src.js",
"tsc": "tsc -p tsconfig.json",
"language": "itlfy generate",
"prepublishOnly": "npm run language && npm run tsc",
"postpublishOnly": "npm run clear",
"spellcheck": "itlfy dump && spellchecker",
"knip": "knip"
},
"engines": {
"node": ">=20"
},
"engineStrict": true
}