-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.53 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.53 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
64
65
66
67
68
69
70
71
72
73
{
"name": "generator-ui5-wdi5",
"version": "1.0.0",
"description": "yeoman generator for wdi5 e2e tests",
"license": "Apache-2.0",
"homepage": "https://github.com/ui5-community/wdi5",
"author": {
"name": "Volker Buzek",
"email": "volker.buzek@js-soft.com",
"url": "https://github.com/ui5-community/"
},
"main": "generators/index.js",
"files": [
"generators"
],
"keywords": [
"ui5",
"sapui5",
"openui5",
"wdi5",
"yeoman-generator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ui5-community/generator-ui5-wdi5.git"
},
"dependencies": {
"yeoman-generator": "^5",
"chalk": "^4",
"yosay": "^2.0.2"
},
"devDependencies": {
"yeoman-test": "^8.1.0",
"yeoman-assert": "^3.1.1",
"eslint": "^8.51.0",
"prettier": "^3.0.3",
"lint-staged": "^15.0.2",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-config-xo": "^0.43.1",
"jest": "^29.7.0"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": "eslint --fix",
"*": "prettier --ignore-unknown --write"
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": "error",
"spaced-comment": "off",
"capitalized-comments": "off",
"no-unused-expressions": "warn"
},
"plugins": [
"prettier"
]
},
"scripts": {
"pretest": "eslint .",
"test": "jest"
}
}