package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "module-alias",
  3. "description": "Create aliases of directories and register custom module paths",
  4. "version": "2.2.3",
  5. "author": {
  6. "name": "Nick Gavrilov",
  7. "email": "artnikpro@gmail.com"
  8. },
  9. "scripts": {
  10. "test": "npm run lint && npm run testonly",
  11. "testonly": "NODE_ENV=test mocha test/specs.js",
  12. "testonly-watch": "NODE_ENV=test mocha -w test/specs.js",
  13. "lint": "standard"
  14. },
  15. "bugs": {
  16. "url": "https://github.com/ilearnio/module-alias/issues"
  17. },
  18. "homepage": "https://github.com/ilearnio/module-alias",
  19. "keywords": [
  20. "extend",
  21. "modules",
  22. "node",
  23. "path",
  24. "resolve"
  25. ],
  26. "license": "MIT",
  27. "main": "index.js",
  28. "files": [
  29. "index.js",
  30. "register.js",
  31. "README.md",
  32. "LICENSE"
  33. ],
  34. "repository": {
  35. "type": "git",
  36. "url": "git+https://github.com/ilearnio/module-alias.git"
  37. },
  38. "devDependencies": {
  39. "chai": "^3.5.0",
  40. "hello-world-classic": "ilearnio/hello-world-classic",
  41. "husky": "^3.0.2",
  42. "mocha": "^2.4.5",
  43. "semver": "^6.1.1",
  44. "standard": "^12.0.1"
  45. },
  46. "husky": {
  47. "hooks": {
  48. "pre-push": "npm run test"
  49. }
  50. }
  51. }