forked from ui5-community/generator-ui5-library
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.07 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
94
95
96
97
98
{
"name": "generator-ui5-library",
"version": "1.0.10",
"description": "Generator for UI5 libraries",
"homepage": "https://github.com/geert-janklaps/generator-ui5-library",
"author": {
"name": "Geert-Jan Klaps",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/geertjanklaps"
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"ui5",
"library",
"generator",
"yeoman-generator"
],
"devDependencies": {
"@babel/eslint-parser": "^7.13.14",
"@babel/eslint-plugin": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-xo": "^0.35.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"jest": "^26.1.0",
"lint-staged": "^10.5.4",
"prettier": "^1.19.1",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^1.7.0"
},
"engines": {
"npm": ">= 4.0.0"
},
"dependencies": {
"chalk": "^2.1.0",
"glob": "^7.1.6",
"semver": "^7.3.5",
"yeoman-generator": "^2.0.1",
"yosay": "^2.0.1"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaVersion": 11,
"requireConfigFile": false,
"babelOptions": {
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
},
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": "error"
},
"plugins": [
"prettier",
"@babel"
]
},
"scripts": {
"pretest": "eslint .",
"test": "jest"
},
"repository": "https://github.com/geert-janklaps/generator-ui5-library.git",
"license": "MIT"
}