You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
{ |
|
"name": "prettier-linter-helpers", |
|
"version": "1.0.1", |
|
"description": "Utilities to help expose prettier output in linting tools", |
|
"contributors": [ |
|
"Ben Scott", |
|
"Teddy Katz" |
|
], |
|
"main": "index.js", |
|
"types": "index.d.ts", |
|
"license": "MIT", |
|
"repository": { |
|
"type": "git", |
|
"url": "git+https://github.com/prettier/prettier-linter-helpers.git" |
|
}, |
|
"bugs": { |
|
"url": "https://github.com/prettier/prettier-linter-helpers/issues" |
|
}, |
|
"homepage": "https://github.com/prettier/prettier-linter-helpers#readme", |
|
"files": [ |
|
"index.js", |
|
"index.d.ts" |
|
], |
|
"dependencies": { |
|
"fast-diff": "^1.1.2" |
|
}, |
|
"devDependencies": { |
|
"@eslint/js": "^9.39.2", |
|
"eslint": "^9.39.2", |
|
"eslint-config-prettier": "^10.1.8", |
|
"eslint-plugin-n": "^17.23.1 ", |
|
"eslint-plugin-prettier": "^5.5.4", |
|
"prettier": "^3.7.4" |
|
}, |
|
"engines": { |
|
"node": ">=6.0.0" |
|
}, |
|
"scripts": { |
|
"lint": "eslint . && prettier . --check", |
|
"test": "node --test test/*.test.js", |
|
"format": "eslint . --fix && prettier '**/*.{js,json,md,yml}' --write" |
|
} |
|
} |