{
  "name": "franc",
  "version": "0.2.3",
  "description": "Detect the language of text",
  "license": "LGPL",
  "keywords": [
    "natural",
    "language",
    "writing",
    "system",
    "language",
    "detect",
    "guess"
  ],
  "dependencies": {
    "trigram-utils": "^0.0.2"
  },
  "author": "Titus Wormer <tituswormer@gmail.com>",
  "devDependencies": {
    "eslint": "^0.8.0",
    "istanbul": "^0.3.0",
    "jscs": "^1.5.3",
    "markdown-table": "0.0.1",
    "matcha": "^0.5.0",
    "mocha": "^1.20.0",
    "speakers": "^0.0.2",
    "trigrams": "^0.0.4",
    "udhr": "^0.0.7",
    "unicode-7.0.0": "^0.1.5"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/wooorm/franc.git"
  },
  "scripts": {
    "test": "node_modules/.bin/_mocha --reporter spec --check-leaks -u exports test/index.js",
    "test-travis": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports test/index.js",
    "lint": "npm run lint-api && npm run lint-script && npm run lint-test && npm run lint-benchmark && npm run lint-style",
    "lint-api": "node_modules/.bin/eslint index.js lib/franc.js --env node --env browser --rule 'quotes: [2, single]'",
    "lint-script": "node_modules/.bin/eslint script/build-fixtures.js script/build-support.js script/build-languages.js --env node --rule 'quotes: [2, single], dot-notation: false'",
    "lint-test": "node_modules/.bin/eslint test/index.js --env node --env mocha --rule 'quotes: [2, single]'",
    "lint-benchmark": "node_modules/.bin/eslint benchmark.js --env node --global 'suite, bench, set' --rule 'quotes: [2, single]'",
    "lint-style": "node_modules/.bin/jscs index.js lib/franc.js script/build-fixtures.js script/build-support.js script/build-languages.js benchmark.js test/index.js --reporter=inline",
    "install-benchmark": "npm install guesslanguage languagedetect vac",
    "build-languages": "node script/build-languages.js",
    "build-fixtures": "node script/build-fixtures.js",
    "build-support": "node script/build-support.js",
    "benchmark": "node_modules/.bin/matcha benchmark.js",
    "coverage": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -- test/index.js",
    "prepublish": "npm run build-languages && npm run build-fixtures && npm run build-support",
    "make": "npm run lint && npm run coverage"
  }
}
