-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2 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
{
"name": "eslint-plugin-sbnc-typescript-rules",
"version": "0.2.1",
"description": "An ESLint plugin with customised linting rules for TypeScript",
"homepage": "https://github.com/BenceSzalai/eslint-plugin-sbnc-typescript-rules#readme",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"eslint-rules",
"typescript",
"typescript-eslint"
],
"author": {
"name": "Bence Szalai",
"email": "[email protected]",
"url": "https://sbnc.eu/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BenceSzalai/eslint-plugin-sbnc-typescript-rules.git"
},
"bugs": {
"url": "https://github.com/BenceSzalai/eslint-plugin-sbnc-typescript-rules/issues"
},
"main": "dist/index.js",
"scripts": {
"clean": "rm -Rf ./dist/",
"build:ci": "npm run build",
"build": "npm run clean && mkdir ./dist && tsc --project tsconfig.build.json",
"lint": "npx eslint -c .eslintrc.js --ext .ts './src/**/*.ts' './tests/**/*.ts' --no-error-on-unmatched-pattern",
"test": "export NODE_OPTIONS=\"--max-old-space-size=8192\" && npx jest --runInBand --colors --reporters=default --no-cache --coverage=false --silent=false -c jest.config.ts",
"pre-commit": "npx lint-staged"
},
"devDependencies": {
"@types/eslint": "8.37.0",
"@types/jest": "29.5.1",
"@types/node": "18.16.0",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@typescript-eslint/rule-tester": "^6.7.5",
"class-validator": "^0.14",
"eslint": "8.39.0",
"jest": "29.5.0",
"jest-create-mock-instance": "2.0.0",
"jest-junit": "16.0.0",
"lint-staged": "13.2.1",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"dependencies" : {
"@typescript-eslint/utils": "^6.7.5",
"@typescript-eslint/type-utils": "^6.7.5"
},
"peerDependencies": {
"eslint": "^8.0.0"
},
"engines": {
"node": ">= 16"
},
"license": "MIT",
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}