package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "esbuild-plugin-alias",
  3. "version": "0.2.1",
  4. "description": "esbuild plugin for path aliases",
  5. "main": "index.js",
  6. "types": "index.d.ts",
  7. "scripts": {
  8. "dev": "nodemon --exec 'npm run test' --watch index.js --watch tests",
  9. "test": "mocha",
  10. "lint": "eslint ."
  11. },
  12. "files": [
  13. "index.js",
  14. "index.d.ts"
  15. ],
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/igoradamenko/esbuild-plugin-alias.git"
  19. },
  20. "keywords": [
  21. "esbuild",
  22. "alias",
  23. "plugin"
  24. ],
  25. "author": "Igor Adamenko <mail@igoradamenko.com> (https://igoradamenko.com)",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/igoradamenko/esbuild-plugin-alias/issues"
  29. },
  30. "homepage": "https://github.com/igoradamenko/esbuild-plugin-alias#readme",
  31. "devDependencies": {
  32. "@funboxteam/eslint-config": "5.3.0",
  33. "esbuild": "0.8.44",
  34. "eslint": "7.19.0",
  35. "husky": "4.3.8",
  36. "lint-staged": "10.5.4",
  37. "mocha": "8.2.1",
  38. "nodemon": "2.0.13"
  39. },
  40. "husky": {
  41. "hooks": {
  42. "pre-commit": "lint-staged -q"
  43. }
  44. },
  45. "lint-staged": {
  46. "*.js": "eslint --fix"
  47. }
  48. }