-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.18 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
{
"name": "cds-load-test",
"version": "1.3.0",
"description": "SAP CAP Load Test",
"type": "module",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"start": "node ./bin/cli.js",
"debug": "DEBUG=cds-load-test* node index.js",
"lint": "npx eslint 'lib/**'",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RizInno/cds-load-test.git"
},
"keywords": [
"SAP",
"CAP",
"load",
"test"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/RizInno/cds-load-test/issues"
},
"homepage": "https://github.com/RizInno/cds-load-test#readme",
"dependencies": {
"babar": "^0.2.2",
"cli-progress": "^3.11.1",
"config": "^3.3.7",
"csvtojson": "^2.0.10",
"debug": "^4.3.4",
"jsonpath": "^1.1.1",
"node-cache": "^5.1.2",
"node-fetch": "^3.2.5",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"eslint": "^8.17.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^10.2.0"
}
}