-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2 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
{
"name": "askui-dev-docs",
"license": "MIT",
"author": "askui GmbH <info@askui.com> (http://www.askui.com/)",
"description": "Developer Docs for AskUI",
"repository": {
"type": "git",
"url": "git+https://github.com/askui/askui-dev-docs.git"
},
"bugs": {
"url": "https://github.com/askui/askui-dev-docs/issues"
},
"homepage": "https://github.com/askui/askui-dev-docs#askui",
"engines": {
"npm": ">8.1.2",
"node": ">16.13.2"
},
"keywords": [
"test",
"testing",
"automated-testing",
"e2e-testing",
"rpa",
"askui",
"function-testing",
"ui-testing",
"automation",
"selenium",
"cypress",
"playwright",
"ui-automation"
],
"scripts": {
"prepare": "husky",
"postpublish": "pinst --enable",
"prepublishOnly": "pinst --disable",
"release:prerelease": "release-it --preRelease=next",
"release": "release-it",
"install-docs": "cd docs && npm install",
"start-docs": "cd docs && npm run start",
"start": "cd docs && npm install && npm run start"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@release-it/bumper": "^6.0.1",
"@release-it/conventional-changelog": "^8.0.2",
"@typescript-eslint/eslint-plugin": "8.6.0",
"@typescript-eslint/parser": "8.6.0",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"husky": "9.1.6",
"is-ci": "3.0.1",
"jira-prepare-commit-msg": "1.7.2",
"lint-staged": "15.2.10",
"pinst": "3.0.0",
"release-it": "^17.6.0",
"zx": "8.1.8"
},
"jira-prepare-commit-msg": {
"isConventionalCommit": true,
"messagePattern": "$M (#$J)"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}