forked from cap-js/cds-typer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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
{
"name": "@cap-js/cds-typer",
"version": "0.4.0",
"description": "Generates .ts files for a CDS model to receive code completion in VS Code",
"main": "index.js",
"homepage": "https://cap.cloud.sap/",
"keywords": [
"CAP",
"CDS",
"CLI"
],
"author": "SAP SE (https://www.sap.com)",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"test:unit": "jest --projects test/unit.jest.config.js",
"test:integration": "jest --projects test/int.jest.config.js",
"test:all": "jest",
"test": "npm run test:unit",
"lint": "eslint",
"cli": "node lib/cli.js"
},
"files": [
"lib/",
"library",
"CHANGELOG.md",
"index.js",
"LICENSE",
"README.md"
],
"types": "index.d.ts",
"bin": {
"cds-typer": "./lib/cli.js"
},
"dependencies": {
"@sap/cds": ">=6"
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29",
"typescript": ">=4.6.4"
},
"jest": {
"projects": [
"test/unit.jest.config.js",
"test/int.jest.config.js"
]
}
}