-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.83 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.83 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@ui5/middleware-code-coverage",
"version": "2.0.2",
"description": "UI5 CLI middleware to instrument code coverage with Istanbul",
"author": {
"name": "SAP SE",
"email": "openui5@sap.com",
"url": "https://www.sap.com"
},
"keywords": [
"openui5",
"sapui5",
"ui5",
"build",
"development",
"tool",
"istanbul",
"code coverage"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git@github.com:UI5/cli-extensions.git",
"directory": "packages/middleware-code-coverage"
},
"type": "module",
"files": [
"CHANGELOG.md",
"ui5.yaml",
"lib/**"
],
"engines": {
"node": "^20.11.0 || >=22.0.0"
},
"dependencies": {
"body-parser": "^1.20.3",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-instrument": "^6.0.3",
"istanbul-lib-report": "^3.0.1",
"istanbul-reports": "^3.2.0",
"router": "^2.2.0",
"serve-static": "^2.2.1",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@istanbuljs/esm-loader-hook": "^0.3.0",
"ava": "^6.4.1",
"depcheck": "^1.4.7",
"eslint": "^9.39.2",
"eslint-config-google": "^0.14.0",
"eslint-plugin-ava": "^15.1.0",
"eslint-plugin-jsdoc": "^61.5.0",
"esmock": "^2.7.3",
"execa": "^9.6.1",
"get-port": "^7.1.0",
"globals": "^16.5.0",
"nyc": "^17.1.0",
"sinon": "^21.0.1",
"supertest": "^7.2.2"
},
"scripts": {
"depcheck": "depcheck --ignores ava,@istanbuljs/esm-loader-hook",
"lint": "eslint ./",
"test": "npm run lint && npm run depcheck && npm run test:unit:coverage && npm run test:integration",
"test:unit": "ava",
"test:unit:coverage": "nyc ava --node-arguments=\"--experimental-loader=@istanbuljs/esm-loader-hook\"",
"test:unit:verbose": "cross-env UI5_LOG_LVL=verbose ava --verbose --serial",
"test:unit:watch": "ava --watch",
"test:integration": "ava --config ava-integration.config.js"
}
}