forked from UI5/typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.82 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.82 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
{
"name": "@ui5/ts-interface-generator",
"version": "0.8.2",
"description": "Generator for TypeScript type definitions for custom UI5 controls implemented in TypeScript",
"author": "SAP SE",
"license": "Apache-2.0",
"main": "dist/generateTSInterfaces.js",
"bin": "dist/generateTSInterfaces.js",
"scripts": {
"start": "node dist/generateTSInterfaces.js",
"try": "npm run build && node dist/generateTSInterfaces.js --config tsconfig-testcontrol.json",
"try-watch": "npm run build && node dist/generateTSInterfaces.js --watch --config tsconfig-testcontrol.json",
"try-watch-managedobject": "npm run build && node dist/generateTSInterfaces.js --watch --config tsconfig-testmanagedobject.json",
"try-watch-webcomponent": "npm run build && node dist/generateTSInterfaces.js --watch --config tsconfig-testwebcomponent.json",
"build": "tsc",
"watch": "tsc --watch",
"test": "jest",
"lint": "eslint src",
"ci": "npm-run-all build test lint"
},
"repository": {
"type": "git",
"url": "git@github.com:SAP/ui5-typescript.git",
"directory": "packages/ts-interface-generator"
},
"keywords": [
"UI5",
"TypeScript",
"SAPUI5",
"OpenUI5",
"Controls"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/hjson": "2.4.6",
"@types/jest": "29.5.12",
"@types/node": "20.12.7",
"@types/openui5": "1.117.0",
"@types/yargs": "17.0.32",
"@typescript-eslint/eslint-plugin": "7.7.0",
"@typescript-eslint/parser": "7.7.0",
"eslint": "8.57.0",
"jest": "29.7.0",
"npm-run-all": "4.1.5",
"ts-jest": "29.1.2",
"typescript": "5.4.5"
},
"dependencies": {
"hjson": "3.2.2",
"loglevel": "1.9.1",
"yargs": "17.7.2"
},
"peerDependencies": {
"typescript": ">=5.2.0"
},
"files": [
"dist"
]
}