-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "generator-ui5-ts-library",
"version": "1.1.0",
"description": "Yeoman-based (sub-)generator for a basic UI5 library based on TypeScript",
"main": "generators/app/index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:staged": "lint-staged",
"format": "prettier --write .",
"format:staged": "pretty-quick --staged --verbose",
"test": "cd test && yo ../generators/app/index.js",
"prepare": "node ./.husky/skip.js || husky",
"hooks:pre-commit": "npm run format:staged && npm run lint:staged"
},
"keywords": [
"yeoman-generator",
"ui5",
"openui5",
"sapui5",
"library",
"typescript"
],
"author": "Wouter Lemaire, Peter Muessig",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ui5-community/generator-ui5-ts-library.git"
},
"bugs": {
"url": "https://github.com/ui5-community/generator-ui5-ts-library/issues"
},
"homepage": "https://github.com/ui5-community/generator-ui5-ts-library#readme",
"dependencies": {
"chalk": "^5.3.0",
"glob": "^11.0.0",
"package-json": "^10.0.1",
"semver": "^7.6.3",
"upath": "^2.0.1",
"yeoman-generator": "^5.9.0",
"yosay": "^2.0.2"
},
"devDependencies": {
"@prettier/plugin-xml": "^3.4.1",
"eslint": "^9.9.1",
"eslint-plugin-jsdoc": "^50.2.2",
"globals": "^15.9.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-properties": "^0.3.0",
"pretty-quick": "^4.0.0",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^7.4.0"
},
"overrides": {
"minimist": ">=1.2.6"
}
}