38 lines
937 B
JSON
38 lines
937 B
JSON
{
|
|
"name": "json-to-jsonl",
|
|
"version": "1.1.0",
|
|
"description": "Convert an array in a .json file to a newline-delimited .jsonl file.",
|
|
"main": "./build/index.js",
|
|
"scripts": {
|
|
"build": "babel src --out-dir build",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"prepublish": "npm run build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/dan-kwiat/json-to-jsonl.git"
|
|
},
|
|
"keywords": [
|
|
"json",
|
|
"jsonl",
|
|
"newline",
|
|
"delimited",
|
|
"conversion"
|
|
],
|
|
"author": {
|
|
"name": "Dan Kwiatkowski",
|
|
"email": "dan@charitybase.uk",
|
|
"url": "https://twitter.com/dan_kwiat"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/dan-kwiat/json-to-jsonl/issues"
|
|
},
|
|
"homepage": "https://github.com/dan-kwiat/json-to-jsonl#readme",
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.26.0",
|
|
"babel-preset-es2015": "^6.24.1"
|
|
}
|
|
}
|