package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "wintersmith",
  3. "version": "2.5.0",
  4. "author": "Johan Nordberg <code@johan-nordberg.com>",
  5. "description": "A flexible static site generator.",
  6. "license": "MIT",
  7. "main": "./lib/",
  8. "keywords": [
  9. "static",
  10. "generator",
  11. "markdown",
  12. "pug"
  13. ],
  14. "bin": {
  15. "wintersmith": "./bin/wintersmith"
  16. },
  17. "scripts": {
  18. "prepublishOnly": "node ./bin/dev/compile_coffee"
  19. },
  20. "directories": {
  21. "lib": "./lib/"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/jnordberg/wintersmith.git"
  26. },
  27. "dependencies": {
  28. "async": "^2.6.1",
  29. "chalk": "^2.4.1",
  30. "chokidar": "^2.0.4",
  31. "coffee-script": "^1.12.7",
  32. "highlight.js": "^9.13.1",
  33. "js-yaml": "^3.12.0",
  34. "marked": "^0.5.1",
  35. "mime": "^2.3.1",
  36. "minimatch": "^3.0.3",
  37. "minimist": "^1.2.0",
  38. "mkdirp": "^0.5.1",
  39. "ncp": "^2.0.0",
  40. "npm": "^6.4.1",
  41. "pug": "^2.0.3",
  42. "rimraf": "^2.6.2",
  43. "server-destroy": "^1.0.1",
  44. "slugg": "^1.2.1",
  45. "winston": "^3.1.0"
  46. },
  47. "devDependencies": {
  48. "shelljs": "^0.8.3"
  49. },
  50. "engine": {
  51. "node": ">=4"
  52. }
  53. }