-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.44 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": "ui5plugin-linter",
"version": "1.15.1",
"description": "UI5 Class linter",
"main": "dist/index.js",
"scripts": {
"test": "test",
"compile": "npx tsc",
"compile-prod": "rd /s /q \"dist\" && npx tsc --project tsconfig-prod.json",
"watch": "npm run compile",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "https://github.com/iljapostnovs/ui5plugin-linter.git"
},
"keywords": [
"ui5",
"fiori",
"sap",
"linter",
"openui5",
"sapui5"
],
"author": "Ilja Postnovs <[email protected]>",
"license": "Apache-2.0",
"contributors": [
"Ilja Postnovs <[email protected]>"
],
"bugs": {
"url": "https://github.com/iljapostnovs/ui5plugin-linter/issues"
},
"bin": {
"ui5linter": "./bin/ui5linter.js"
},
"homepage": "https://github.com/iljapostnovs/ui5plugin-linter#readme",
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.com/donate/?hosted_button_id=HPZ5FA8C3KJ6W"
},
{
"type": "github",
"url": "https://github.com/sponsors/iljapostnovs"
},
{
"type": "individual",
"url": "https://donate.cafe/iljapostnovs"
}
],
"devDependencies": {
"@types/node": "^20.11.6",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"ts-loader": "^9.5.1",
"typescript": "5.3.3"
},
"dependencies": {
"chalk": "^4.1.2",
"minimatch": "^9.0.3",
"rc-config-loader": "^4.1.3",
"ui5plugin-parser": "1.7.7"
}
}