131 lines
4.4 KiB
JSON
131 lines
4.4 KiB
JSON
{
|
|
"name": "eslint-plugin-yml",
|
|
"version": "1.18.0",
|
|
"description": "This ESLint plugin provides linting rules for YAML.",
|
|
"main": "lib/index.js",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"engines": {
|
|
"node": "^14.17.0 || >=16.0.0"
|
|
},
|
|
"scripts": {
|
|
"prebuild": "npm run -s clean",
|
|
"build": "npm run build:meta && npm run build:ts",
|
|
"build:meta": "npm run ts -- ./tools/update-meta.ts",
|
|
"build:ts": "tsc --project ./tsconfig.build.json",
|
|
"clean": "rimraf .nyc_output dist coverage",
|
|
"lint": "eslint .",
|
|
"eslint-fix": "eslint . --fix",
|
|
"eslint-test-fix": "eslint tests/src/rules/*.ts --fix -c .eslintrc.for-vscode.js",
|
|
"pretest:base": "cross-env DEBUG=eslint-plugin-yml*",
|
|
"test:base": "npm run mocha -- \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
|
|
"test": "npm run test:base",
|
|
"cover": "nyc --reporter=lcov npm run test:base",
|
|
"test:debug": "npm run mocha -- \"tests/src/**/*.ts\" --reporter dot",
|
|
"update": "npm run ts -- ./tools/update.ts && npm run eslint-fix && npm run cover",
|
|
"new": "npm run ts -- ./tools/new-rule.ts",
|
|
"predocs:watch": "npm run build:ts",
|
|
"docs:watch": "vitepress dev docs",
|
|
"docs:build": "npm run build:ts && vitepress build docs",
|
|
"preversion": "npm test && git add .",
|
|
"version": "env-cmd -e version npm run update && git add .",
|
|
"version:ci": "env-cmd -e version-ci npm run update && changeset version",
|
|
"prerelease": "npm run build",
|
|
"release": "changeset publish",
|
|
"update-fixtures": "npm run ts -- ./tools/update-fixtures.ts && npm run eslint-fix",
|
|
"ts": "node -r esbuild-register",
|
|
"mocha": "npm run ts -- ./node_modules/mocha/bin/mocha.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ota-meshi/eslint-plugin-yml.git"
|
|
},
|
|
"keywords": [
|
|
"eslint",
|
|
"eslintplugin",
|
|
"eslint-plugin",
|
|
"yaml",
|
|
"yml",
|
|
"lint"
|
|
],
|
|
"author": "Yosuke Ota",
|
|
"funding": "https://github.com/sponsors/ota-meshi",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/ota-meshi/eslint-plugin-yml/issues"
|
|
},
|
|
"homepage": "https://ota-meshi.github.io/eslint-plugin-yml/",
|
|
"dependencies": {
|
|
"debug": "^4.3.2",
|
|
"escape-string-regexp": "4.0.0",
|
|
"eslint-compat-utils": "^0.6.0",
|
|
"natural-compare": "^1.4.0",
|
|
"yaml-eslint-parser": "^1.2.1"
|
|
},
|
|
"peerDependencies": {
|
|
"eslint": ">=6.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/changelog-github": "^0.5.0",
|
|
"@changesets/cli": "^2.24.2",
|
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.3.0",
|
|
"@eslint/eslintrc": "^3.1.0",
|
|
"@eslint/js": "^9.5.0",
|
|
"@eslint/json": "^0.12.0",
|
|
"@ota-meshi/eslint-plugin": "^0.17.3",
|
|
"@ota-meshi/site-kit-eslint-editor-vue": "^0.2.0",
|
|
"@types/debug": "^4.1.5",
|
|
"@types/eslint": "^9.0.0",
|
|
"@types/eslint-scope": "^3.7.0",
|
|
"@types/eslint-visitor-keys": "^3.0.0",
|
|
"@types/estree": "^1.0.0",
|
|
"@types/mocha": "^10.0.0",
|
|
"@types/natural-compare": "^1.4.0",
|
|
"@types/node": "^22.0.0",
|
|
"@types/semver": "^7.3.1",
|
|
"@typescript-eslint/eslint-plugin": "~8.31.0",
|
|
"@typescript-eslint/parser": "~8.31.0",
|
|
"cross-env": "^7.0.2",
|
|
"env-cmd": "^10.1.0",
|
|
"esbuild": "^0.25.0",
|
|
"esbuild-register": "^3.2.0",
|
|
"eslint": "^9.16.0",
|
|
"eslint-config-prettier": "^10.0.0",
|
|
"eslint-plugin-eslint-plugin": "^6.0.0",
|
|
"eslint-plugin-eslint-rule-tester": "^0.6.0",
|
|
"eslint-plugin-jsdoc": "^50.0.0",
|
|
"eslint-plugin-json-schema-validator": "^5.0.0",
|
|
"eslint-plugin-jsonc": "^2.0.0",
|
|
"eslint-plugin-markdown": "^5.0.0",
|
|
"eslint-plugin-n": "^17.0.0",
|
|
"eslint-plugin-node-dependencies": "^0.12.0",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"eslint-plugin-regexp": "^2.0.0",
|
|
"eslint-plugin-vue": "^9.0.0",
|
|
"eslint-plugin-yml": "^1.0.0",
|
|
"events": "^3.3.0",
|
|
"mocha": "^11.0.0",
|
|
"monaco-editor": "^0.52.0",
|
|
"nyc": "^17.0.0",
|
|
"pako": "^2.1.0",
|
|
"prettier": "^3.0.3",
|
|
"semver": "^7.3.2",
|
|
"stylelint": "^16.0.0",
|
|
"stylelint-config-recommended-vue": "^1.0.0",
|
|
"stylelint-config-standard": "^38.0.0",
|
|
"stylelint-config-standard-vue": "^1.0.0",
|
|
"stylelint-stylus": "^1.0.0",
|
|
"typescript": "~5.8.0",
|
|
"typescript-eslint": "^8.0.0",
|
|
"vite-plugin-eslint4b": "^0.5.0",
|
|
"vitepress": "^1.0.0-rc.17",
|
|
"vue-eslint-parser": "^10.0.0",
|
|
"yaml": "^2.1.1"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"packageManager": "npm@11.3.0"
|
|
}
|