fs-ndjson
Version:
read and write NDJSON files (Newline Delimited JSON)
65 lines (64 loc) • 1.49 kB
JSON
{
"name": "fs-ndjson",
"version": "1.1.0",
"description": "read and write NDJSON files (Newline Delimited JSON)",
"author": {
"name": "Buster Collings",
"email": "busterc@gmail.com",
"url": "https://about.me/buster"
},
"files": ["lib"],
"main": "lib/index.js",
"keywords": ["ndjson", "ldjson", "nd-json", "ld-json", "jsonl"],
"devDependencies": {
"coveralls": "^2.13.1",
"deep-diff": "^0.3.8",
"eslint": "^4.1.0",
"eslint-config-prettier": "^2.4.0",
"eslint-config-xo": "^0.18.2",
"eslint-plugin-prettier": "^2.2.0",
"husky": "^0.14.3",
"jest": "^21.0.0",
"jest-cli": "^21.0.0",
"lint-staged": "^4.2.1",
"nsp": "^2.6.3",
"prettier": "^1.7.0",
"universalify": "^0.1.1"
},
"scripts": {
"prepublish": "nsp check",
"pretest": "eslint .",
"precommit": "lint-staged",
"test": "jest --coverage"
},
"lint-staged": {
"*.js": ["eslint --fix", "git add"],
"*.json": ["prettier --write", "git add"]
},
"eslintConfig": {
"extends": ["xo", "prettier"],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": ["prettier"]
},
"repository": "busterc/fs-ndjson",
"jest": {
"testEnvironment": "node"
},
"license": "ISC",
"dependencies": {
"make-dir": "^1.1.0",
"universalify": "^0.1.1"
}
}