-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
74 lines (74 loc) · 2.18 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
{
"name": "bestofui5-data",
"version": "0.0.1",
"description": "GitHub Data Crawler for bestofui5-website",
"private": "true",
"author": "Marian Zeis",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ui5-community/bestofui5-data.git"
},
"scripts": {
"prepare": "node ./.husky/skip.js || husky install",
"build": "ts-node src/index.ts",
"watch": "tsc -w",
"compile": "tsc",
"ts-typecheck": "tsc --noEmit",
"lint": "eslint src",
"lint:staged": "lint-staged",
"lint:commit": "commitlint -e",
"prettier": "prettier --write .",
"prettier:staged": "pretty-quick --staged --verbose",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"hooks:pre-commit": "npm-run-all --sequential prettier:staged lint:staged",
"hooks:pre-push": "npm-run-all --sequential lint:commit"
},
"dependencies": {
"@octokit/auth-token": "^2.5.0",
"@octokit/core": "^3.6.0",
"@octokit/plugin-throttling": "^3.6.2",
"@octokit/rest": "^18.12.0",
"axios": "^0.27.2",
"changelog-parser": "^2.8.1",
"dotenv": "^16.0.0",
"js-yaml": "^4.1.0",
"jsdoc-to-markdown": "^7.1.1",
"node-html-parser": "^5.3.3"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@prettier/plugin-xml": "^2.1.0",
"@types/changelog-parser": "^2.8.1",
"@types/glob": "^7.2.0",
"@types/js-yaml": "^4.0.5",
"@types/jsdoc-to-markdown": "^7.0.3",
"@types/node": "^17.0.30",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.14.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"prettier-plugin-properties": "^0.1.0",
"pretty-quick": "^3.1.3",
"ts-node": "^10.7.0",
"tsc": "^2.0.4",
"typescript": "^4.6.4",
"xml-formatter": "^2.6.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}