-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.67 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
{
"name": "generator-ui5-library-webc",
"version": "0.1.0",
"description": "Yeoman-based (sub-)generator for a basic UI5 library",
"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 ../../generator-ui5-library-webc",
"prepare": "node ./.husky/skip.js || husky install",
"hooks:pre-commit": "npm-run-all --sequential format:staged lint:staged"
},
"keywords": [
"yeoman-generator",
"ui5",
"openui5",
"sapui5",
"library",
"webcomponents",
"ui5-webcomponents",
"UI5 Web Components"
],
"author": "OpenUI5",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ui5-community/generator-ui5-library-webc.git"
},
"bugs": {
"url": "https://github.com/ui5-community/generator-ui5-library-webc/issues"
},
"homepage": "https://github.com/ui5-community/generator-ui5-library-webc#readme",
"dependencies": {
"chalk": "^5.2.0",
"glob": "^10.2.7",
"is-valid-path": "^0.1.1",
"package-json": "^8.1.1",
"semver": "^7.5.2",
"upath": "^2.0.1",
"validate-npm-package-name": "^5.0.0",
"yeoman-generator": "^5.9.0",
"yosay": "^2.0.2"
},
"devDependencies": {
"@prettier/plugin-xml": "^2.2.0",
"eslint": "^8.42.0",
"eslint-plugin-jsdoc": "^46.2.6",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-plugin-properties": "^0.2.0",
"pretty-quick": "^3.1.3",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^7.4.0"
},
"overrides": {
"minimist": ">=1.2.6"
}
}