{
  "name": "opentype.js",
  "description": "OpenType font parser",
  "version": "0.4.11",
  "author": {
    "name": "Frederik De Bleser",
    "email": "frederik@debleser.be"
  },
  "keywords": [
    "graphics",
    "fonts",
    "opentype",
    "otf",
    "ttf",
    "type"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/nodebox/opentype.js.git"
  },
  "main": "src/opentype.js",
  "bin": {
    "ot": "./bin/ot"
  },
  "scripts": {
    "watch": "watchify src/opentype.js --standalone opentype --debug -o build/opentype.js -v",
    "start": "mkdirp build && parallelshell \"npm run watch\" \"node ./bin/server.js\"",
    "test": "mocha --recursive && jshint . && jscs .",
    "browserify": "browserify src/opentype.js --bare --standalone opentype > dist/opentype.js",
    "uglify": "browserify src/opentype.js --bare --standalone opentype -g uglifyify > dist/opentype.min.js",
    "dist": "rimraf build && rimraf dist && mkdirp build && mkdirp dist && npm run test && npm run browserify && npm run uglify"
  },
  "devDependencies": {
    "browserify": "^9.0.3",
    "jscs": "^1.12.0",
    "jshint": "^2.8.0",
    "mkdirp": "^0.5.1",
    "mocha": "^2.2.5",
    "parallelshell": "^1.1.1",
    "rimraf": "^2.4.0",
    "uglifyify": "^3.0.1",
    "watchify": "^2.6.0"
  },
  "browser": {
    "fs": false
  }
}
