114 lines
3.7 KiB
JSON
114 lines
3.7 KiB
JSON
{
|
|
"name": "svelte-eslint-parser",
|
|
"version": "0.33.1",
|
|
"description": "Svelte parser for ESLint",
|
|
"repository": "git+https://github.com/sveltejs/svelte-eslint-parser.git",
|
|
"homepage": "https://github.com/sveltejs/svelte-eslint-parser#readme",
|
|
"author": "Yosuke Ota (https://github.com/ota-meshi)",
|
|
"contributors": [
|
|
"JounQin (https://github.com/JounQin)"
|
|
],
|
|
"funding": "https://github.com/sponsors/ota-meshi",
|
|
"license": "MIT",
|
|
"packageManager": "pnpm@7.33.6",
|
|
"engines": {
|
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
},
|
|
"main": "lib/index.js",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"keywords": [
|
|
"svelte",
|
|
"sveltejs",
|
|
"eslint",
|
|
"parser"
|
|
],
|
|
"peerDependencies": {
|
|
"svelte": "^3.37.0 || ^4.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"svelte": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"eslint-scope": "^7.0.0",
|
|
"eslint-visitor-keys": "^3.0.0",
|
|
"espree": "^9.0.0",
|
|
"postcss": "^8.4.29",
|
|
"postcss-scss": "^4.0.8"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/changelog-github": "^0.4.8",
|
|
"@changesets/cli": "^2.26.1",
|
|
"@changesets/get-release-plan": "^3.0.16",
|
|
"@ota-meshi/eslint-plugin": "^0.15.0",
|
|
"@types/benchmark": "^2.1.2",
|
|
"@types/chai": "^4.3.5",
|
|
"@types/eslint": "^8.40.1",
|
|
"@types/eslint-scope": "^3.7.4",
|
|
"@types/eslint-visitor-keys": "^1.0.0",
|
|
"@types/estree": "^1.0.1",
|
|
"@types/mocha": "^10.0.1",
|
|
"@types/node": "^18.16.16",
|
|
"@types/semver": "^7.5.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.1.0",
|
|
"@typescript-eslint/parser": "~6.7.0",
|
|
"@typescript-eslint/types": "~6.7.0",
|
|
"benchmark": "^2.1.4",
|
|
"chai": "^4.3.7",
|
|
"env-cmd": "^10.1.0",
|
|
"esbuild": "^0.19.0",
|
|
"esbuild-register": "^3.4.2",
|
|
"eslint": "^8.42.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
"eslint-plugin-json-schema-validator": "^4.5.0",
|
|
"eslint-plugin-jsonc": "^2.8.0",
|
|
"eslint-plugin-n": "^16.0.0",
|
|
"eslint-plugin-node-dependencies": "^0.11.0",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"eslint-plugin-regexp": "^1.15.0",
|
|
"eslint-plugin-svelte": "^2.30.0",
|
|
"eslint-plugin-yml": "^1.7.0",
|
|
"estree-walker": "^3.0.3",
|
|
"locate-character": "^3.0.0",
|
|
"magic-string": "^0.30.0",
|
|
"mocha": "^10.2.0",
|
|
"mocha-chai-jest-snapshot": "^1.1.4",
|
|
"nyc": "^15.1.0",
|
|
"prettier": "^3.0.0",
|
|
"prettier-plugin-pkg": "^0.18.0",
|
|
"prettier-plugin-svelte": "^3.0.0",
|
|
"rimraf": "^5.0.1",
|
|
"semver": "^7.5.1",
|
|
"svelte": "^4.2.0",
|
|
"svelte2tsx": "^0.6.20",
|
|
"typescript": "~5.1.3",
|
|
"typescript-eslint-parser-for-extra-files": "^0.5.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"benchmark": "pnpm run ts benchmark/index.ts",
|
|
"build": "pnpm run build:meta && pnpm run build:tsc",
|
|
"build:meta": "pnpm run ts ./tools/update-meta.ts",
|
|
"build:tsc": "tsc --project ./tsconfig.build.json",
|
|
"clean": "rimraf .nyc_output lib coverage",
|
|
"cover": "nyc --reporter=lcov pnpm run test",
|
|
"debug": "pnpm run mocha \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
|
|
"eslint-fix": "pnpm run lint --fix",
|
|
"lint": "eslint . --ext .js,.ts,.json,.yaml,.yml,.svelte",
|
|
"mocha": "pnpm run ts ./node_modules/mocha/bin/mocha.js",
|
|
"prebuild": "pnpm run clean",
|
|
"prerelease": "pnpm run clean && pnpm run build",
|
|
"preversion": "pnpm run lint && pnpm run test",
|
|
"release": "changeset publish",
|
|
"test": "pnpm run mocha \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
|
|
"ts": "node -r esbuild-register",
|
|
"update-fixtures": "pnpm run ts ./tools/update-fixtures.ts",
|
|
"version:ci": "env-cmd -e version-ci pnpm run build:meta && changeset version"
|
|
}
|
|
} |