106 lines
2.9 KiB
JSON
106 lines
2.9 KiB
JSON
{
|
|
"_args": [
|
|
[
|
|
{
|
|
"raw": "strip-eof@^1.0.0",
|
|
"scope": null,
|
|
"escapedName": "strip-eof",
|
|
"name": "strip-eof",
|
|
"rawSpec": "^1.0.0",
|
|
"spec": ">=1.0.0 <2.0.0",
|
|
"type": "range"
|
|
},
|
|
"/home/jdaugherty/work/GT2/GT2-Android/node_modules/execa"
|
|
]
|
|
],
|
|
"_from": "strip-eof@>=1.0.0 <2.0.0",
|
|
"_id": "strip-eof@1.0.0",
|
|
"_inCache": true,
|
|
"_location": "/strip-eof",
|
|
"_nodeVersion": "4.2.1",
|
|
"_npmUser": {
|
|
"name": "sindresorhus",
|
|
"email": "sindresorhus@gmail.com"
|
|
},
|
|
"_npmVersion": "2.14.7",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"raw": "strip-eof@^1.0.0",
|
|
"scope": null,
|
|
"escapedName": "strip-eof",
|
|
"name": "strip-eof",
|
|
"rawSpec": "^1.0.0",
|
|
"spec": ">=1.0.0 <2.0.0",
|
|
"type": "range"
|
|
},
|
|
"_requiredBy": [
|
|
"/clipboardy/execa",
|
|
"/execa"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
|
|
"_shasum": "bb43ff5598a6eb05d89b59fcd129c983313606bf",
|
|
"_shrinkwrap": null,
|
|
"_spec": "strip-eof@^1.0.0",
|
|
"_where": "/home/jdaugherty/work/GT2/GT2-Android/node_modules/execa",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "sindresorhus.com"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/sindresorhus/strip-eof/issues"
|
|
},
|
|
"dependencies": {},
|
|
"description": "Strip the End-Of-File (EOF) character from a string/buffer",
|
|
"devDependencies": {
|
|
"ava": "*",
|
|
"xo": "*"
|
|
},
|
|
"directories": {},
|
|
"dist": {
|
|
"shasum": "bb43ff5598a6eb05d89b59fcd129c983313606bf",
|
|
"tarball": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"gitHead": "365dfe6c19b4e607a0cc2cf7dad0b0620f238333",
|
|
"homepage": "https://github.com/sindresorhus/strip-eof#readme",
|
|
"keywords": [
|
|
"strip",
|
|
"trim",
|
|
"remove",
|
|
"delete",
|
|
"eof",
|
|
"end",
|
|
"file",
|
|
"newline",
|
|
"linebreak",
|
|
"character",
|
|
"string",
|
|
"buffer"
|
|
],
|
|
"license": "MIT",
|
|
"maintainers": [
|
|
{
|
|
"name": "sindresorhus",
|
|
"email": "sindresorhus@gmail.com"
|
|
}
|
|
],
|
|
"name": "strip-eof",
|
|
"optionalDependencies": {},
|
|
"readme": "# strip-eof [![Build Status](https://travis-ci.org/sindresorhus/strip-eof.svg?branch=master)](https://travis-ci.org/sindresorhus/strip-eof)\n\n> Strip the [End-Of-File](https://en.wikipedia.org/wiki/End-of-file) (EOF) character from a string/buffer\n\n\n## Install\n\n```\n$ npm install --save strip-eof\n```\n\n\n## Usage\n\n```js\nconst stripEof = require('strip-eof');\n\nstripEof('foo\\nbar\\n\\n');\n//=> 'foo\\nbar\\n'\n\nstripEof(new Buffer('foo\\nbar\\n\\n')).toString();\n//=> 'foo\\nbar\\n'\n```\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n",
|
|
"readmeFilename": "readme.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/sindresorhus/strip-eof.git"
|
|
},
|
|
"scripts": {
|
|
"test": "xo && ava"
|
|
},
|
|
"version": "1.0.0"
|
|
}
|