-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.74 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "eslint-plugin-node-roikoren",
"version": "3.0.4",
"repository": {
"type": "git",
"url": "ssh://[email protected]/roikoren755/eslint-plugin-node.git"
},
"author": "Roi Koren",
"eslintIgnore": [
"dist",
"node_modules"
],
"license": "MIT",
"main": "src/index.js",
"files": [
"src/**/*.js",
"src/**/*.d.ts"
],
"scripts": {
"build": "tsc --project tsconfig.prod.json",
"clean": "tsc --build --clean && rimraf .nyc_output coverage",
"codechecks": "codechecks",
"coverage": "nyc report -r lcov",
"lint": "eslint . --cache",
"new": "ts-node scripts/new-rule",
"postrelease": "npm run clean",
"prepare": "husky install",
"prerelease": "npm run build",
"release": "changeset publish",
"test": "nyc mocha tests/**/*.ts --reporter dot --timeout 4000",
"type": "tsc",
"update": "ts-node scripts/update",
"watch": "mocha tests/**/*.ts --reporter progress --timeout 4000 --watch"
},
"peerDependencies": {
"eslint": "^7 || ^8"
},
"resolutions": {
"prettier": "2.6.2"
},
"dependencies": {
"@typescript-eslint/utils": "^5.0.0",
"eslint-plugin-es-roikoren": "^2.0.4",
"ignore": "^5.2.0",
"is-core-module": "^2.8.0",
"minimatch": "^5.0.0",
"resolve": "^1.22.0",
"semver": "7.3.7"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.4",
"@changesets/cli": "2.22.0",
"@codechecks/client": "0.1.12",
"@commitlint/cli": "17.0.0",
"@commitlint/config-conventional": "17.0.0",
"@types/is-core-module": "2.2.0",
"@types/minimatch": "3.0.5",
"@types/mocha": "9.1.1",
"@types/resolve": "1.20.2",
"@types/semver": "7.3.9",
"@typescript-eslint/eslint-plugin": "5.25.0",
"@typescript-eslint/parser": "5.25.0",
"@typescript-eslint/types": "5.25.0",
"@typescript-eslint/typescript-estree": "5.25.0",
"@typescript-eslint/utils": "5.25.0",
"camelcase": "6.3.0",
"eslint": "8.16.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-es-roikoren": "2.0.11",
"eslint-plugin-eslint-plugin": "4.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node-roikoren": "file:.",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-unicorn": "42.0.0",
"fast-glob": "3.2.11",
"globals": "13.15.0",
"husky": "8.0.1",
"ignore": "5.2.0",
"is-core-module": "2.9.0",
"lint-staged": "13.0.0",
"minimatch": "5.1.0",
"mocha": "10.0.0",
"nyc": "15.1.0",
"prettier": "2.6.2",
"resolve": "1.22.0",
"type-coverage": "2.21.1",
"type-fest": "2.12.2",
"typecov": "0.2.3",
"typescript": "4.6.4"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --quiet --cache"
]
}
}