-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.93 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": "temp-eslint-config-txo-typescript",
"version": "7.3.22",
"description": "Technology Studio - Eslint typescript config",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/technology-studio/eslint-config-txo-typescript.git"
},
"author": {
"name": "Technology Studio",
"email": "npm@technologystudio.sk",
"url": "https://github.com/technology-studio/"
},
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"git-hook": "yarn -s lint",
"lint:ci": "yarn lint",
"lint:fix": "eslint . --fix",
"lint": "eslint --max-warnings 0 .",
"ncu-all": "ncu -i",
"prepare": "husky && yarn build",
"sanity": "yarn build && yarn lint:ci && yarn outdated && echo 'success'",
"semantic-release": "semantic-release",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"type-check": "tsc --noEmit"
},
"engines": {
"node": ">=18.0.0"
},
"bin": {
"txo-eslint": "./lib/cli.js"
},
"dependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@stylistic/eslint-plugin": "^2.13.0",
"@typescript-eslint/utils": "^8.20.0",
"eslint": "^9.18.0",
"eslint-config-love": "^116.0.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-promise": "^7.2.1",
"globals": "^15.14.0",
"typescript-eslint": "^8.20.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@txo/commitlint": "^1.0.21",
"@txo/semantic-release": "^2.0.10",
"@txo/tsconfig": "^2.0.0",
"@types/eslint": "^9.6.1",
"@types/jest": "^29.5.14",
"@types/yargs": "^17.0.33",
"husky": "^9.1.7",
"jest": "^29.7.0",
"npm-check-updates": "^17.1.13",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}