{
  "name": "ndjson-to-json-text",
  "version": "1.0.2",
  "description": "Convert ndjson to json text without JSON parsing.",
  "keywords": [
    "converter",
    "json",
    "ndjson"
  ],
  "homepage": "https://github.com/azu/ndjson-to-json-text",
  "bugs": {
    "url": "https://github.com/azu/ndjson-to-json-text/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/azu/ndjson-to-json-text.git"
  },
  "license": "MIT",
  "author": "azu",
  "files": [
    "bin/",
    "lib/",
    "src/"
  ],
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "directories": {
    "lib": "lib",
    "test": "test"
  },
  "scripts": {
    "build": "cross-env NODE_ENV=production tsc -p .",
    "clean": "rimraf lib/",
    "prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
    "prepublish": "npm run --if-present build",
    "test": "mocha \"test/**/*.ts\"",
    "updateSnapshot": "cross-env UPDATE_SNAPSHOT=1 npm test",
    "watch": "tsc -p . --watch"
  },
  "husky": {
    "hooks": {
      "precommit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx,css}": [
      "prettier --write",
      "git add"
    ]
  },
  "prettier": {
    "printWidth": 120,
    "singleQuote": false,
    "tabWidth": 4
  },
  "devDependencies": {
    "@types/mocha": "^5.2.6",
    "@types/node": "^11.9.5",
    "cross-env": "^5.2.0",
    "husky": "^1.3.1",
    "lint-staged": "^8.1.4",
    "mocha": "^6.0.2",
    "prettier": "^1.16.4",
    "rimraf": "^2.6.3",
    "ts-node": "^8.0.2",
    "ts-node-test-register": "^8.0.0",
    "typescript": "^3.3.3333"
  },
  "dependencies": {}
}
