package.json 808 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "editorconfig-to-prettier",
  3. "version": "0.2.0",
  4. "description": "Converts an `editorconfig`-parsed object to a `prettier` configuration",
  5. "main": "index.js",
  6. "files": [],
  7. "scripts": {
  8. "lint": "prettier --list-different *.js",
  9. "fix": "prettier --write *.js",
  10. "prepublishOnly": "npm test",
  11. "pretest": "npm run lint",
  12. "test": "node test"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/josephfrazier/editorconfig-to-prettier.git"
  17. },
  18. "author": "Joseph Frazier <1212jtraceur@gmail.com>",
  19. "license": "ISC",
  20. "bugs": {
  21. "url": "https://github.com/josephfrazier/editorconfig-to-prettier/issues"
  22. },
  23. "homepage": "https://github.com/josephfrazier/editorconfig-to-prettier#readme",
  24. "devDependencies": {
  25. "prettier": "^1.7.4"
  26. }
  27. }