-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.43 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
{
"name": "create-wdi5",
"version": "2.0.5",
"description": "a quick bootstrap for using wdi5 (wdio-ui5-service)",
"keywords": [
"wdi5",
"wdio-ui5-service",
"ui5",
"openui5",
"sapui5"
],
"homepage": "https://ui5-community.github.io/wdi5/#/installation?id=a-quickstart-with-npm-init-wdi5",
"repository": "github:ui5-community/create-wdi5",
"license": "Apache-2.0",
"author": "UI5 community",
"main": "bin/wdi5.js",
"bin": {
"create-wdi5": "./bin/wdi5.js"
},
"files": [
"bin",
"dist",
"templates"
],
"scripts": {
"clean": "rimraf dist/*",
"compile": "tsc",
"build": "run-s -c clean compile",
"build:watch": "tsc -w",
"prepare": "husky install",
"prerelease": "npm run build",
"release": "standard-version"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.ts": "eslint --cache --fix"
},
"dependencies": {
"colorette": "^2.0.20"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"typescript": "^5.6.3"
}
}