-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
65 lines (65 loc) · 2 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
{
"name": "cds2types",
"version": "3.0.0",
"description": "CLI to convert CDS models to Typescript interfaces and enumerations",
"main": "./bin/cli.js",
"repository": "[email protected]:mrbandler/cds2types.git",
"author": "mrbandler <[email protected]>",
"license": "MIT",
"readme": "README.md",
"bugs": {
"url": "https://github.com/mrbandler/cds2types/issues"
},
"bin": {
"cds2types": "./bin/cli.js"
},
"files": [
"bin"
],
"scripts": {
"start": "node",
"build": "tsc --project tsconfig.build.json",
"test": "tsc --project tsconfig.test.json",
"test:compileCDS": "ts-node ./src/cli.ts --cds ./test/srv/service.cds --output ./test/gen/ --prefix I --format --sort --json --debug",
"build:start": "yarn build && yarn start",
"build:link": "yarn build && npm link",
"test:lint": "npx eslint './test/gen/*'"
},
"peerDependencies": {
"@sap/cds": "^6.3.1"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@sap/cds": "^6.3.1",
"@types/eslint": "^8.4.10",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.189",
"@types/node": "^14.17.34",
"@types/prettier": "^2.7.1",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.4",
"lint-staged": "^12.1.3",
"ts-node": "^10.8.1",
"typescript": "^4.9.3"
},
"dependencies": {
"commander": "^8.3.0",
"fs-extra": "^10.0.0",
"lodash": "^4.17.21",
"prettier": "^2.7.1",
"ts-morph": "^9.1.0"
},
"lint-staged": {
"*.{js,ts,css,json,yml}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix"
]
}
}