-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.23 KB
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
{
"name": "lintervention",
"version": "4.0.0",
"license": "MIT",
"description": "A tool for identifying ESLint rules you routinely ignore",
"repository": "github:kapowaz/lintervention",
"engines": {
"node": ">= 16.19.*",
"npm": "please-use-yarn",
"yarn": ">= 1.22.0"
},
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.cts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
}
},
"scripts": {
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch",
"lint": "eslint --ext .js,.ts src/",
"lintervention": "node dist/bin/lintervention",
"lintervention:staged": "yarn lintervention --scope staged",
"lintervention:branch": "yarn lintervention --scope branch",
"typecheck": "tsc --emitDeclarationOnly false --noEmit",
"clean": "rm -rf ./dist ./compiled",
"build": "yarn clean && yarn build:ts && yarn build:js",
"build:ts": "tsc -p ./tsconfig.build.json",
"build:js": "rollup -c rollup.config.ts --configPlugin esbuild"
},
"bin": "./bin/lintervention",
"dependencies": {
"@kapowaz/eslint-config": "^6.0.1",
"minimist": "^1.2.6"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@types/jest": "^30.0.0",
"@types/minimist": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"babel-jest": "^30.2.0",
"esbuild": "^0.25.4",
"eslint": "^9.39.1",
"jest": "30",
"jest-cli": "30",
"jest-matcher-one-of": "^1.0.2",
"jest-watch-typeahead": "^3.0.1",
"prettier": "3.6.2",
"rollup": "^4.41.0",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-esbuild": "^6.2.1",
"rollup-plugin-node-externals": "^8.0.0",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3"
}
}