-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 1.81 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
{
"name": "generator-ui5-add-extension",
"version": "1.0.2",
"description": "A Yeoman generator to easily add assets to your UI5 project",
"homepage": "",
"author": {
"name": "Jakob Kjaer",
"email": "[email protected]"
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"ui5",
"ui5-tooling",
"sapui5",
"openui5",
"yeoman-generator"
],
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.0.0",
"@types/yeoman-generator": "^5.2.10",
"@types/yosay": "^2.0.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.6.0",
"eslint-config-xo": "^0.27.2",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"lint-staged": "^9.4.3",
"prettier": "^1.19.1",
"typescript": "^4.7.4"
},
"engines": {
"npm": ">= 4.0.0"
},
"dependencies": {
"axios": "^0.27.2",
"chalk": "^4.1.2",
"envfile": "^6.17.0",
"js-yaml": "^4.1.0",
"write-yaml": "^1.0.0",
"yeoman-environment": "^3.19.3",
"yeoman-generator": "^5.10.0",
"yosay": "^2.0.2"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.ts": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit1": "lint-staged"
}
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": "error"
},
"plugins": [
"prettier"
]
},
"scripts": {
"pretest": "eslint .",
"test": "jest"
},
"repository": "ui5-community/generator-ui5-add-extension",
"license": "Apache-2.0"
}