-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.73 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.73 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
{
"name": "ui5-version-check",
"version": "0.2.0",
"description": "Check/fix UI5 versions",
"keywords": [
"UI5",
"CLI"
],
"repository": {
"type": "git",
"url": "git+https://github.com/DevEpos/ui5-version-check.git"
},
"author": "DevEpos",
"license": "MIT",
"main": "index.js",
"bin": {
"ui5vc": "bin/cli.js"
},
"bugs": {
"url": "https://github.com/DevEpos/ui5-version-check/issues"
},
"homepage": "https://github.com/DevEpos/ui5-version-check#README",
"scripts": {
"build": "tsc && cp README.md package.json LICENSE dist/src",
"ci-test": "jest",
"clean": "rimraf dist coverage",
"coverage": "npx make-coverage-badge --output-path ./badges/coverage.svg",
"doc": "typedoc --out docs/typedoc src",
"format": "prettier --write .",
"lint": "eslint .",
"publish": "./scripts/publish.sh",
"release": "release-it",
"test": "npm run lint && npm run build && npm run test:run",
"test:run": "jest"
},
"dependencies": {
"glob": "^11.0.2",
"semver": "^7.7.1"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@release-it/keep-a-changelog": "^7.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.3",
"@types/semver": "^7.7.0",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.3.1",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.5.3",
"prettier-eslint": "^16.4.1",
"prettier-eslint-cli": "^8.0.1",
"release-it": "^19.0.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"ts-script": "^1.0.0",
"typedoc": "^0.28.4",
"typescript": "~5.8.3",
"typescript-eslint": "^8.31.1"
}
}