This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
83 lines (83 loc) · 2.23 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
75
76
77
78
79
80
81
82
83
{
"name": "eslint-plugin-deprecation",
"version": "0.0.0-development",
"description": "ESLint rule that reports usage of deprecated code",
"author": "Alex Malkevich <[email protected]>",
"license": "LGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/gund/eslint-plugin-deprecation.git"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"ct": "git-cz",
"prebuild": "rimraf dist",
"build": "tsc --build tsconfig.build.json",
"build:w": "npm run build -- --watch",
"test": "jest",
"test:w": "npm run test -- --watch",
"format": "prettier --write src/**/*",
"format:check": "prettier --check src/**/*",
"semantic-release": "semantic-release"
},
"dependencies": {
"@typescript-eslint/utils": "^7.0.0",
"tslib": "^2.3.1",
"ts-api-utils": "^1.3.0"
},
"peerDependencies": {
"eslint": "^8.0.0",
"typescript": "^4.2.4 || ^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^10.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/rule-tester": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"prettier": "^2.4.1",
"rimraf": "^4.4.1",
"semantic-release": "^21.0.0",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "npm run format:check"
}
},
"lint-staged": {
"src/**/*": [
"prettier --write"
]
}
}