package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@nuxtjs/eslint-module",
  3. "version": "3.1.0",
  4. "description": "ESLint module for Nuxt.js",
  5. "repository": "nuxt-community/eslint-module",
  6. "license": "MIT",
  7. "contributors": [
  8. "Ricardo Gobbo de Souza <ricardogobbosouza@yahoo.com.br>"
  9. ],
  10. "main": "./dist/module.js",
  11. "types": "./dist/module.d.ts",
  12. "files": [
  13. "dist"
  14. ],
  15. "scripts": {
  16. "build": "siroc build",
  17. "dev": "nuxt dev test/fixture/basic",
  18. "lint": "eslint --ext .js,.ts,.vue .",
  19. "prepublishOnly": "yarn build",
  20. "release": "yarn test && yarn build && standard-version && git push --follow-tags && npm publish",
  21. "test": "yarn lint && yarn jest"
  22. },
  23. "dependencies": {
  24. "consola": "^2.15.3",
  25. "defu": "^6.0.0",
  26. "eslint-webpack-plugin": "^2.6.0"
  27. },
  28. "devDependencies": {
  29. "@babel/preset-typescript": "latest",
  30. "@nuxt/test-utils": "latest",
  31. "@nuxt/types": "latest",
  32. "@nuxtjs/eslint-config-typescript": "latest",
  33. "@types/jest": "latest",
  34. "@types/node": "latest",
  35. "eslint": "latest",
  36. "jest": "latest",
  37. "nuxt": "latest",
  38. "siroc": "latest",
  39. "standard-version": "latest"
  40. },
  41. "peerDependencies": {
  42. "eslint": ">=7"
  43. },
  44. "publishConfig": {
  45. "access": "public"
  46. }
  47. }