-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 824 Bytes
/
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
{
"name": "eslint-plugin-no-type-assertion",
"version": "1.3.0",
"description": "Disallow type assertions in TypeScript code",
"main": "lib/index.js",
"files": [
"/lib"
],
"repository": "https://github.com/Dremora/eslint-plugin-no-type-assertion",
"author": "Kirill Korolyov <kirill.korolyov@gmail.com>",
"license": "MIT",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"engines": {
"node": ">=12.0.0",
"yarn": "^1.13.0"
},
"scripts": {
"test": "jest tests",
"prettier": "prettier --check \"{lib,test}/**/*.js\""
},
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"jest": "^27.3.1",
"prettier": "^2.5.0",
"typescript": "^4.5.2"
}
}