generated from SAP/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
107 lines (107 loc) · 2.9 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@ui5/linter",
"version": "1.2.0",
"description": "A static code analysis tool for UI5",
"author": {
"name": "SAP SE",
"email": "openui5@sap.com",
"url": "https://www.sap.com"
},
"license": "Apache-2.0",
"keywords": [
"openui5",
"sapui5",
"ui5",
"development",
"linter"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SAP/ui5-linter.git"
},
"bugs": {
"url": "https://github.com/SAP/ui5-linter/issues"
},
"bin": {
"ui5lint": "bin/ui5lint.js"
},
"type": "module",
"scripts": {
"build": "npm run cleanup && tsc -p tsconfig.build.json",
"build-test": "tsc --noEmit -p .",
"build-watch": "npm run cleanup && tsc -w -p tsconfig.build.json",
"check-licenses": "licensee --errors-only",
"cleanup": "rimraf lib coverage",
"coverage": "nyc ava --node-arguments=\"--experimental-loader=@istanbuljs/esm-loader-hook\"",
"depcheck": "depcheck --ignores @commitlint/config-conventional,@istanbuljs/esm-loader-hook,rimraf,sap,mycomp",
"hooks:pre-push": "npm run lint:commit",
"lint": "eslint .",
"lint:commit": "commitlint -e",
"prepare": "node ./.husky/skip.js || husky",
"test": "npm run lint && npm run build-test && npm run coverage && npm run depcheck",
"unit": "ava",
"unit-debug": "ava debug",
"unit-update-snapshots": "ava --update-snapshots",
"unit-watch": "ava --watch",
"update-sapui5-types": "tsx scripts/update-sapui5-types.ts"
},
"files": [
"CHANGELOG.md",
"LICENSES/**",
"lib/**",
"npm-shrinkwrap.json",
"resources/**",
".reuse/**"
],
"engines": {
"node": "^20.11.0 || >=22.0.0",
"npm": ">= 8"
},
"dependencies": {
"@jridgewell/sourcemap-codec": "^1.5.0",
"@jridgewell/trace-mapping": "^0.3.25",
"@sapui5/types": "1.120.21",
"@ui5/fs": "^4.0.1",
"@ui5/logger": "^4.0.1",
"@ui5/project": "^4.0.3",
"chalk": "^5.3.0",
"data-with-position": "^0.5.0",
"figures": "^6.1.0",
"he": "^1.2.0",
"json-source-map": "^0.6.1",
"minimatch": "^10.0.1",
"sax-wasm": "^2.2.4",
"typescript": "^5.6.3",
"update-notifier": "^7.3.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.11.1",
"@istanbuljs/esm-loader-hook": "^0.2.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@stylistic/eslint-plugin": "^2.10.0",
"@types/he": "^1.2.3",
"@types/node": "^20.17.1",
"@types/sinon": "^17.0.3",
"@types/update-notifier": "^6.0.8",
"@types/yargs": "^17.0.33",
"@types/yauzl-promise": "^4.0.1",
"@ui5-language-assistant/semantic-model": "^3.3.1",
"@ui5-language-assistant/semantic-model-types": "^3.3.1",
"ava": "^6.2.0",
"depcheck": "^1.4.7",
"eslint": "^9.13.0",
"eslint-plugin-ava": "^15.0.1",
"esmock": "^2.6.9",
"husky": "^9.1.6",
"licensee": "^11.1.1",
"nyc": "^17.1.0",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"tsx": "^4.19.2",
"typescript-eslint": "^8.12.2",
"yauzl-promise": "^4.0.0"
}
}