forked from cap-js/cap-operator-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 970 Bytes
/
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
{
"name": "@cap-js/cap-operator-plugin",
"version": "0.0.1",
"description": "Add/Build Plugin for CAP Operator",
"homepage": "https://github.com/cap-js/cap-operator-plugin/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/cap-js/cap-operator-plugin"
},
"bugs": {
"url": "https://github.com/cap-js/cap-operator-plugin/issues"
},
"author": "SAP SE (https://www.sap.com)",
"license": "SEE LICENSE",
"main": "cds-plugin.js",
"files": [
"cds-plugin.js",
"lib",
"files",
"CHANGELOG.md"
],
"peerDependencies": {
"@sap/cds": ">=7",
"@sap/cds-dk": ">=7"
},
"dependencies": {
"mustache": "^4.2.0"
},
"devDependencies": {
"chai": "^4.3.10",
"mocha": "^10.3.0",
"nyc": "^15.1.0"
},
"scripts": {
"test": "mocha --timeout 20000",
"test-coverage-lcov": "nyc mocha --timeout 20000 && nyc --reporter lcov --reporter text --report-dir coverage report"
}
}