package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "wick",
  3. "version": "0.23.1",
  4. "description": "Static web server with built in preprocessing",
  5. "author": "Brock Whitten <brock@chloi.io>",
  6. "contributors": [
  7. "Brock Whitten <brock@chloi.io>",
  8. "Rob Ellis <rob@chloi.io>",
  9. "Jorge Pedret <jorge@chloi.io>",
  10. "Michael Brooks <michael@michaelbrooks.ca>",
  11. "Tommy-Carlos Williams <tommy@devgeeks.org>",
  12. "Darryl Pogue <darryl@dpogue.ca>",
  13. "Boris Mann <boris@bmannconsulting.com>",
  14. "Kenneth Ormandy <kenneth@chloi.io>",
  15. "Keith Yao <i@yaofur.com>",
  16. "Eric Drechsel <eric@pdxhub.org>",
  17. "Andrew Hobden <andrew@hoverbear.org>",
  18. "Max Melentiev <printercu@gmail.com>",
  19. "Remy Sharp <remy@remysharp.com>",
  20. "Zeke Sikelianos <zeke@sikelianos.com>",
  21. "Marc Knaup <marc.knaup@koeln.de>",
  22. "Jurgen Van de Moere <jurgen.van.de.moere@gmail.com>"
  23. ],
  24. "keywords": [
  25. "static web server",
  26. "static site generator",
  27. "sass",
  28. "less",
  29. "stylus",
  30. "markdown",
  31. "jade",
  32. "ejs",
  33. "coffeescript"
  34. ],
  35. "homepage": "http://harpjs.com",
  36. "bugs": "http://github.com/sintaxi/harp/issues",
  37. "main": "./lib/index.js",
  38. "repository": {
  39. "type": "git",
  40. "url": "https://github.com/sintaxi/harp.git"
  41. },
  42. "dependencies": {
  43. "async": "2.1.2",
  44. "commander": "2.9.0",
  45. "connect": "3.5.0",
  46. "download-github-repo": "0.1.3",
  47. "envy-json": "0.2.1",
  48. "escape-html": "1.0.3",
  49. "fs-extra": "1.0.0",
  50. "mime": "1.3.4",
  51. "parseurl": "1.3.1",
  52. "pause": "0.1.0",
  53. "send": "0.14.1",
  54. "candlewax": "1.3.0"
  55. },
  56. "devDependencies": {
  57. "cheerio": "0.22.0",
  58. "mocha": "3.1.2",
  59. "nixt": "0.5.0",
  60. "request": "2.78.0",
  61. "should": "11.1.1"
  62. },
  63. "scripts": {
  64. "test": "mocha --reporter spec -t 8000"
  65. },
  66. "license": "MIT",
  67. "preferGlobal": true,
  68. "readmeFilename": "README.md",
  69. "bin": "./bin/wick",
  70. "engines": {
  71. "node": ">=0.12"
  72. }
  73. }