forked from 1DSAG/UI5-Best-Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1000 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1000 Bytes
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
{
"name": "ui5-best-practice",
"version": "0.0.1",
"description": "part of the environment setup for the DSAG UI5 best practice guide",
"main": "--none",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1DSAG/UI5-Best-Practice.git"
},
"keywords": [
"UI5",
"DSAG",
"SAPUI5",
"openUI5"
],
"author": "DSAG UI5 community",
"license": "MIT",
"bugs": {
"url": "https://github.com/1DSAG/UI5-Best-Practice/issues"
},
"homepage": "https://github.com/1DSAG/UI5-Best-Practice#readme",
"dependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"markdownlint-cli": "^0.26.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.md": "markdownlint --fix"
}
}