-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.57 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
{
"name": "jsdoc-ts-utils",
"description": "A plugin with utilities to make your TypeScript-like docs JSDoc valid",
"homepage": "https://github.com/homer0/jsdoc-ts-utils",
"version": "5.0.0",
"repository": "homer0/jsdoc-ts-utils",
"author": "Leonardo Apiwan (@homer0) <[email protected]>",
"license": "MIT",
"keywords": [
"jsdoc",
"typescript",
"ts",
"documentation",
"typedef"
],
"dependencies": {
"jsdoc": "^4.0.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@homer0/eslint-plugin": "^12.0.0",
"@homer0/prettier-config": "^1.1.3",
"@homer0/prettier-plugin-jsdoc": "^8.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"docdash": "homer0/docdash#semver:^2.1.2",
"eslint": "^8.50.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"leasot": "^13.3.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"semantic-release": "^22.0.5"
},
"peerDependencies": {
"jsdoc": "*"
},
"engine-strict": true,
"engines": {
"node": ">=18.17 <21"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"main": "src/index.js",
"scripts": {
"docs": "./utils/scripts/docs",
"lint": "./utils/scripts/lint",
"lint:all": "./utils/scripts/lint-all",
"test": "./utils/scripts/test",
"todo": "./utils/scripts/todo",
"prepare": "./utils/scripts/prepare"
}
}