114 lines
4.3 KiB
JSON
114 lines
4.3 KiB
JSON
{
|
|
"_args": [
|
|
[
|
|
{
|
|
"raw": "read-pkg@^2.0.0",
|
|
"scope": null,
|
|
"escapedName": "read-pkg",
|
|
"name": "read-pkg",
|
|
"rawSpec": "^2.0.0",
|
|
"spec": ">=2.0.0 <3.0.0",
|
|
"type": "range"
|
|
},
|
|
"/home/jdaugherty/work/GT2/GT2-Android/node_modules/read-pkg-up"
|
|
]
|
|
],
|
|
"_from": "read-pkg@>=2.0.0 <3.0.0",
|
|
"_id": "read-pkg@2.0.0",
|
|
"_inCache": true,
|
|
"_location": "/read-pkg",
|
|
"_nodeVersion": "4.5.0",
|
|
"_npmOperationalInternal": {
|
|
"host": "packages-12-west.internal.npmjs.com",
|
|
"tmp": "tmp/read-pkg-2.0.0.tgz_1475052271222_0.4820629544556141"
|
|
},
|
|
"_npmUser": {
|
|
"name": "sindresorhus",
|
|
"email": "sindresorhus@gmail.com"
|
|
},
|
|
"_npmVersion": "2.15.9",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"raw": "read-pkg@^2.0.0",
|
|
"scope": null,
|
|
"escapedName": "read-pkg",
|
|
"name": "read-pkg",
|
|
"rawSpec": "^2.0.0",
|
|
"spec": ">=2.0.0 <3.0.0",
|
|
"type": "range"
|
|
},
|
|
"_requiredBy": [
|
|
"/read-pkg-up"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz",
|
|
"_shasum": "8ef1c0623c6a6db0dc6713c4bfac46332b2368f8",
|
|
"_shrinkwrap": null,
|
|
"_spec": "read-pkg@^2.0.0",
|
|
"_where": "/home/jdaugherty/work/GT2/GT2-Android/node_modules/read-pkg-up",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "sindresorhus.com"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/sindresorhus/read-pkg/issues"
|
|
},
|
|
"dependencies": {
|
|
"load-json-file": "^2.0.0",
|
|
"normalize-package-data": "^2.3.2",
|
|
"path-type": "^2.0.0"
|
|
},
|
|
"description": "Read a package.json file",
|
|
"devDependencies": {
|
|
"ava": "*",
|
|
"xo": "*"
|
|
},
|
|
"directories": {},
|
|
"dist": {
|
|
"shasum": "8ef1c0623c6a6db0dc6713c4bfac46332b2368f8",
|
|
"tarball": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz"
|
|
},
|
|
"engines": {
|
|
"node": ">=4"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"gitHead": "c1664a2f42d1f1898b7648534576e6dcfa1f48c8",
|
|
"homepage": "https://github.com/sindresorhus/read-pkg#readme",
|
|
"keywords": [
|
|
"json",
|
|
"read",
|
|
"parse",
|
|
"file",
|
|
"fs",
|
|
"graceful",
|
|
"load",
|
|
"pkg",
|
|
"package",
|
|
"normalize"
|
|
],
|
|
"license": "MIT",
|
|
"maintainers": [
|
|
{
|
|
"name": "sindresorhus",
|
|
"email": "sindresorhus@gmail.com"
|
|
}
|
|
],
|
|
"name": "read-pkg",
|
|
"optionalDependencies": {},
|
|
"readme": "# read-pkg [![Build Status](https://travis-ci.org/sindresorhus/read-pkg.svg?branch=master)](https://travis-ci.org/sindresorhus/read-pkg)\n\n> Read a package.json file\n\n\n## Why\n\n- [Gracefully handles filesystem issues](https://github.com/isaacs/node-graceful-fs)\n- [Strips UTF-8 BOM](https://github.com/sindresorhus/strip-bom)\n- [Throws more helpful JSON errors](https://github.com/sindresorhus/parse-json)\n- [Normalizes the data](https://github.com/npm/normalize-package-data#what-normalization-currently-entails)\n\n\n## Install\n\n```\n$ npm install --save read-pkg\n```\n\n\n## Usage\n\n```js\nconst readPkg = require('read-pkg');\n\nreadPkg().then(pkg => {\n\tconsole.log(pkg);\n\t//=> {name: 'read-pkg', ...}\n});\n\nreadPkg(__dirname).then(pkg => {\n\tconsole.log(pkg);\n\t//=> {name: 'read-pkg', ...}\n});\n\nreadPkg(path.join('unicorn', 'package.json')).then(pkg => {\n\tconsole.log(pkg);\n\t//=> {name: 'read-pkg', ...}\n});\n```\n\n\n## API\n\n### readPkg([path], [options])\n\nReturns a `Promise` for the parsed JSON.\n\n### readPkg.sync([path], [options])\n\nReturns the parsed JSON.\n\n#### path\n\nType: `string`<br>\nDefault: `.`\n\nPath to a `package.json` file or its directory.\n\n#### options\n\n##### normalize\n\nType: `boolean`<br>\nDefault: `true`\n\n[Normalize](https://github.com/npm/normalize-package-data#what-normalization-currently-entails) the package data.\n\n\n## Related\n\n- [read-pkg-up](https://github.com/sindresorhus/read-pkg-up) - Read the closest package.json file\n- [write-pkg](https://github.com/sindresorhus/write-pkg) - Write a `package.json` file\n- [load-json-file](https://github.com/sindresorhus/load-json-file) - Read and parse a JSON file\n\n\n## License\n\nMIT © [Sindre Sorhus](https://sindresorhus.com)\n",
|
|
"readmeFilename": "readme.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/sindresorhus/read-pkg.git"
|
|
},
|
|
"scripts": {
|
|
"test": "xo && ava"
|
|
},
|
|
"version": "2.0.0",
|
|
"xo": {
|
|
"esnext": true
|
|
}
|
|
}
|