-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.55 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
{
"name": "eslint-formatter-autolinkable-stylish",
"version": "1.4.0",
"description": "ESlint Autolinkable Stylish Formatter",
"keywords": [
"eslint",
"eslint-formatter",
"eslint-formatter-autolinkable-stylish",
"typescript"
],
"author": {
"name": "Oleksandr Tarasiuk",
"email": "oleksandr.tarasiuk@outlook.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a-tarasyuk/eslint-formatter-autolinkable-stylish.git"
},
"bugs": {
"url": "https://github.com/a-tarasyuk/eslint-formatter-autolinkable-stylish/issues"
},
"main": "dist/autolinkable-stylish-formatter.js",
"scripts": {
"prepare": "npm run build",
"format": "prettier --write \"./**/*.{ts,md}\"",
"format:check": "prettier --list-different \"./**/*.{ts,md}\"",
"test": "jest --config jest.config.js --coverage",
"lint": "eslint -c eslint.config.mjs",
"build": "tsc"
},
"dependencies": {
"chalk": "^4.1.2",
"plur": "^4.0.0"
},
"peerDependencies": {
"eslint": "^8.3.0 || ^9.0.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/eslint": "9.6.0",
"@types/eslint__js": "^8.42.3",
"@types/estree": "1.0.5",
"@types/jest": "29.5.12",
"@types/node": "22.1.0",
"eslint": "^9.8.0",
"husky": "9.1.4",
"jest": "29.7.0",
"prettier": "3.3.3",
"ts-jest": "29.2.4",
"typescript": "5.5.4",
"typescript-eslint": "^8.0.0"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run format:check && npm test"
}
}
}