forked from gund/eslint-plugin-deprecation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.34 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
84
85
86
{
"name": "@delagen/eslint-plugin-deprecation",
"version": "1.3.2",
"description": "ESLint rule that reports usage of deprecated code",
"author": "Alex Malkevich <malkevich.alex@gmail.com>",
"contributors": [
{
"name": "Vohmyanin Sergey",
"email": "delagen@gmail.com"
}
],
"license": "LGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/delagen/eslint-plugin-deprecation.git"
},
"main": "dist/index.js",
"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/experimental-utils": "~5.3.1",
"tslib": "^2.3.1",
"tsutils": "^3.21.0"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0",
"typescript": "^3.7.5 || ^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "~14.1.0",
"@commitlint/config-conventional": "~15.0.0",
"@semantic-release/changelog": "~6.0.1",
"@semantic-release/commit-analyzer": "~9.0.2",
"@semantic-release/git": "~10.0.1",
"@semantic-release/github": "~8.0.2",
"@semantic-release/npm": "~8.0.3",
"@semantic-release/release-notes-generator": "~10.0.3",
"@types/jest": "~27.0.3",
"@types/node": "~16.11.12",
"@typescript-eslint/eslint-plugin": "~5.3.1",
"@typescript-eslint/typescript-estree": "~5.3.1",
"@typescript-eslint/parser": "~5.3.1",
"eslint": "~8.4.1",
"commitizen": "~4.2.4",
"cz-conventional-changelog": "~3.3.0",
"husky": "~7.0.4",
"lint-staged": "~12.1.2",
"jest": "~27.4.3",
"prettier": "~2.5.1",
"rimraf": "~3.0.2",
"semantic-release": "~18.0.1",
"ts-jest": "~27.1.1",
"typescript": "~4.4.4"
},
"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"
]
}
}