package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "module",
  3. "version": "1.2.5",
  4. "description": "Generate the minimal skeleton/boilerplate for a new Node.js module.",
  5. "author": "Luke Horvat",
  6. "license": "MIT",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/lukehorvat/module.git"
  10. },
  11. "bugs": {
  12. "url": "https://github.com/lukehorvat/module/issues"
  13. },
  14. "main": "./dist/index.js",
  15. "bin": "./dist/cli.js",
  16. "scripts": {
  17. "build": "rimraf dist && babel lib -d dist",
  18. "prepublish": "npm run build"
  19. },
  20. "dependencies": {
  21. "chalk": "1.1.3",
  22. "concat-stream": "1.5.1",
  23. "lodash.template": "4.2.4",
  24. "map-stream": "0.0.6",
  25. "tildify": "1.2.0",
  26. "vinyl-fs": "2.4.3",
  27. "yargs": "4.6.0"
  28. },
  29. "devDependencies": {
  30. "babel-cli": "6.7.5",
  31. "babel-preset-es2015": "6.6.0",
  32. "rimraf": "2.5.2"
  33. },
  34. "keywords": [
  35. "npm",
  36. "node",
  37. "module",
  38. "package",
  39. "skeleton",
  40. "boilerplate",
  41. "scaffold",
  42. "generator",
  43. "generic",
  44. "cli"
  45. ],
  46. "babel": {
  47. "presets": [
  48. "es2015"
  49. ]
  50. }
  51. }