{
  "name": "linebreak",
  "version": "0.3.0",
  "description": "An implementation of the Unicode Line Breaking Algorithm (UAX #14)",
  "repository": {
    "type": "git",
    "url": "https://github.com/devongovett/linebreaker.git"
  },
  "keywords": [
    "unicode",
    "text",
    "wrapping"
  ],
  "author": "Devon Govett <devongovett@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/devongovett/linebreaker/issues"
  },
  "homepage": "https://github.com/devongovett/linebreaker",
  "dependencies": {
    "base64-js": "0.0.8",
    "brfs": "^1.3.0",
    "unicode-trie": "^0.3.0"
  },
  "devDependencies": {
    "coffee-script": "^1.7.1",
    "mocha": "*"
  },
  "scripts": {
    "prepublish": "coffee -c src/",
    "postpublish": "rm -rf src/*.js",
    "test": "node_modules/mocha/bin/mocha"
  },
  "main": "src/linebreaker",
  "browserify": {
    "transform": [
      "brfs"
    ]
  }
}
