-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.3 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.3 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
62
63
64
65
66
67
68
69
70
71
{
"name": "@sap-ux/eslint-plugin-fiori-tools",
"version": "9.12.1",
"description": "Custom linting plugin for Fiori tools apps",
"repository": {
"type": "git",
"url": "https://github.com/SAP/open-ux-tools.git",
"directory": "packages/eslint-plugin-fiori-tools"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"main": "./lib/index.js",
"scripts": {
"build": "tsc --build",
"watch": "tsc --build --watch",
"clean": "rimraf --glob lib coverage *.tsbuildinfo",
"format": "prettier --write '**/*.{js,json,ts,yaml,yml}' --ignore-path ../../.prettierignore",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest --ci --forceExit --detectOpenHandles --colors --maxWorkers=50%"
},
"devDependencies": {
"cross-env": "10.1.0",
"eslint": "9.39.1",
"@typescript-eslint/rule-tester": "8.57.2",
"eslint-plugin-eslint-plugin": "7.3.2"
},
"dependencies": {
"@babel/core": "7.29.0",
"@babel/eslint-parser": "^7.28.5",
"@eslint/js": "9.22.0",
"@eslint/json": "0.14.0",
"@eslint/core": "0.17.0",
"@eslint/config-helpers": "0.5.3",
"@typescript-eslint/eslint-plugin": ">=8.57.2",
"@typescript-eslint/parser": ">=8.57.2",
"@sap-ux/fiori-annotation-api": "workspace:*",
"@sap-ux/odata-annotation-core": "workspace:*",
"@sap-ux/odata-vocabularies": "workspace:*",
"@sap-ux/odata-entity-model": "workspace:*",
"@sap-ux/project-access": "workspace:*",
"@sap-ux/vocabularies-types": "0.15.0",
"@xml-tools/ast": "5.0.5",
"@xml-tools/parser": "1.0.11",
"@humanwhocodes/momoa": "^3.3.9",
"@eslint/plugin-kit": "0.5.0",
"globals": "17.4.0",
"lodash": "4.18.1",
"requireindex": "^1.2.0",
"synckit": "0.11.12",
"yaml": "2.8.3",
"semver": "7.7.4"
},
"peerDependencies": {
"eslint": "^9",
"typescript-eslint": "^8.57.2",
"@types/semver": "7.7.1"
},
"engines": {
"node": ">=20.x"
},
"license": "Apache-2.0",
"files": [
"LICENSE",
"lib",
"docs"
]
}