-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
64 lines (64 loc) · 1.68 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
{
"name": "eslint-plugin-lingui",
"version": "0.8.1",
"description": "ESLint plugin for Lingui",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"lingui",
"linguijs",
"lingui-js"
],
"repository": "lingui/eslint-plugin",
"bugs": "https://github.com/lingui/eslint-plugin/issues",
"author": "Igor Dolzhenkov",
"main": "lib/index.js",
"files": [
"/lib",
"README.md"
],
"type": "commonjs",
"scripts": {
"test": "jest",
"test:ci": "jest --ci --runInBand --coverage",
"build": "rm -rf lib && tsc --project tsconfig.build.json",
"prettier:check": "prettier --check --ignore-unknown '**/*'",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@typescript-eslint/utils": "^8.0.0",
"micromatch": "^4.0.0"
},
"peerDependencies": {
"eslint": "^8.37.0 || ^9.0.0"
},
"devDependencies": {
"@types/eslint": "^8.40.2",
"@types/jest": "^29.5.13",
"@types/micromatch": "^4.0.9",
"@types/node": "^20.3.3",
"@typescript-eslint/parser": "^8.0.0",
"@typescript-eslint/rule-tester": "^8.0.0",
"@typescript-eslint/scope-manager": "^8.0.0",
"eslint": "^9.12.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^14.0.0",
"prettier": "3.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"packageManager": "yarn@4.5.0+sha512.837566d24eec14ec0f5f1411adb544e892b3454255e61fdef8fd05f3429480102806bac7446bc9daff3896b01ae4b62d00096c7e989f1596f2af10b927532f39"
}