package.json 1001 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "prettier-linter-helpers",
  3. "version": "1.0.0",
  4. "description": "Utilities to help expose prettier output in linting tools",
  5. "contributors": [
  6. "Ben Scott",
  7. "Teddy Katz"
  8. ],
  9. "main": "index.js",
  10. "license": "MIT",
  11. "scripts": {
  12. "lint": "eslint .",
  13. "test": "npm run lint && mocha",
  14. "format": "yarn run prettier '**/*.{js,json,md,yml}' --write && yarn run lint --fix"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/prettier/prettier-linter-helpers.git"
  19. },
  20. "bugs": {
  21. "url": "https://github.com/prettier/prettier-linter-helpers/issues"
  22. },
  23. "homepage": "https://github.com/prettier/prettier-linter-helpers#readme",
  24. "dependencies": {
  25. "fast-diff": "^1.1.2"
  26. },
  27. "devDependencies": {
  28. "eslint": "^5.6.1",
  29. "eslint-config-prettier": "^3.1.0",
  30. "eslint-plugin-node": "^7.0.1",
  31. "eslint-plugin-prettier": "^2.7.0",
  32. "mocha": "^5.2.0",
  33. "prettier": "^1.14.3"
  34. },
  35. "engines": {
  36. "node": ">=6.0.0"
  37. }
  38. }