{
  "name": "haste-server",
  "version": "0.2.1",
  "description": "A damn simple and pretty pastebin server.",
  "author": {
    "name": "Jakub Jirutka",
    "email": "jakub@jirutka.cz"
  },
  "bin": {
    "haste-server": "./server.js"
  },
  "scripts": {
    "start": "node server.js",
    "test": "mocha -r should spec/*",
    "prepublish": "npm run build",
    "build": "npm run build-sass && npm run build-min-js",
    "build-sass": "node-sass --output-style compact -o static/style/ sass/main.scss",
    "build-min-js": "uglifyjs static/application.js -v -o static/application.min.js",
    "watch-sass": "node-sass --output-style compact -o static/style/ -w -r sass/"
  },
  "main": "haste",
  "repository": {
    "type": "git",
    "url": "https://github.com/jirutka/haste-server"
  },
  "bugs": {
    "url": "https://github.com/jirutka/haste-server/issues"
  },
  "keywords": [
    "paste",
    "pastebin",
    "hastebin"
  ],
  "dependencies": {
    "busboy": "0.2.x",
    "connect": "3.3.x",
    "connect-route": "0.1.x",
    "json5": "0.4.x",
    "st": "0.5.x",
    "winston": "0.9.x"
  },
  "devDependencies": {
    "mocha": "*",
    "node-sass": "2.0.x",
    "should": "*",
    "uglify-js": "2.4.x"
  },
  "optionalDependencies": {
    "memcache": "0.3.x",
    "pg": "4.3.x",
    "redis-url": "0.3.x",
    "redis": "0.12.x"
  },
  "engines": {
    "node": ">=0.10.0",
    "npm": ">=1.1.49"
  },
  "directories": {
    "lib": "./lib"
  },
  "license": "MIT"
}
