Files
base-configs-eslint/package.json
Ismo Vuorinen ad8f7e3a55 chore: add publish workflow and developer tooling configurations (#73)
* feat(ci): new release flow, linting

* chore: upgrade yarn, regenerate yarn.lock

* feat: upgrade packages, publish workflow, lint

* chore(lint): prettier default config

* chore: remove gitHead from package.json

* chore: upgrade workflows

* chore: clean packages
2025-12-04 01:46:38 +02:00

72 lines
1.7 KiB
JSON

{
"name": "@ivuorinen/eslint-config",
"version": "0.5.13",
"description": "ivuorinen's shareable configuration for ESLint.",
"author": {
"name": "Ismo Vuorinen",
"url": "https://github.com/ivuorinen"
},
"bugs": {
"url": "https://github.com/ivuorinen/base-configs-eslint/issues"
},
"engines": {
"node": "^20.9.0 || >=21.1.0"
},
"type": "module",
"main": "index.cjs",
"module": "wrapper.mjs",
"exports": {
".": {
"import": "./wrapper.mjs",
"require": "./index.cjs"
},
"./jest": {
"import": "./wrapper-jest.mjs",
"require": "./jest.cjs"
}
},
"files": [
"index.cjs",
"jest.cjs",
"wrapper.mjs",
"wrapper-jest.mjs",
"scripts/*"
],
"homepage": "https://github.com/ivuorinen/base-configs-eslint#readme",
"keywords": [
"eslint-config",
"eslint",
"config",
"ivuorinen"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivuorinen/base-configs-eslint.git"
},
"scripts": {
"postinstall": "node scripts/postinstall.cjs",
"semantic-release": "semantic-release --ci"
},
"dependencies": {
"@eslint/js": "^9.39.1",
"@ivuorinen/config-checker": "^2.1.1",
"eslint": "^9.39.1",
"eslint-config-eslint": "^13.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.2.1",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-promise": "^7.2.1",
"globals": "^16.5.0",
"typescript": ">=4.2.0"
},
"devDependencies": {
"@ivuorinen/semantic-release-config": "*"
},
"packageManager": "yarn@4.12.0"
}