mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.8 KiB
46 lines
1.8 KiB
{
|
|
"name": "read-installed",
|
|
"description": "Read all the installed packages in a folder, and return a tree structure with all the data.",
|
|
"version": "4.0.3",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/isaacs/read-installed.git"
|
|
},
|
|
"main": "read-installed.js",
|
|
"scripts": {
|
|
"test": "tap ./test/*.js"
|
|
},
|
|
"dependencies": {
|
|
"debuglog": "^1.0.1",
|
|
"read-package-json": "^2.0.0",
|
|
"readdir-scoped-modules": "^1.0.0",
|
|
"semver": "2 || 3 || 4 || 5",
|
|
"slide": "~1.1.3",
|
|
"util-extend": "^1.0.1",
|
|
"graceful-fs": "^4.1.2"
|
|
},
|
|
"optionalDependencies": {
|
|
"graceful-fs": "^4.1.2"
|
|
},
|
|
"author": {
|
|
"name": "Isaac Z. Schlueter",
|
|
"email": "i@izs.me",
|
|
"url": "http://blog.izs.me/"
|
|
},
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"mkdirp": "^0.5.0",
|
|
"rimraf": "^2.2.8",
|
|
"tap": "^1.2.0"
|
|
},
|
|
"readme": "# read-installed\n\nRead all the installed packages in a folder, and return a tree\nstructure with all the data.\n\nnpm uses this.\n\n## 2.0.0\n\nBreaking changes in `2.0.0`:\n\nThe second argument is now an `Object` that contains the following keys:\n\n * `depth` optional, defaults to Infinity\n * `log` optional log Function\n * `dev` optional, default false, set to true to include devDependencies\n\n## Usage\n\n```javascript\nvar readInstalled = require(\"read-installed\")\n// optional options\nvar options = { dev: false, log: fn, depth: 2 }\nreadInstalled(folder, options, function (er, data) {\n ...\n})\n```\n",
|
|
"readmeFilename": "README.md",
|
|
"gitHead": "da02df6acdb5f5ee31d8c637ef31fb50efb455c1",
|
|
"bugs": {
|
|
"url": "https://github.com/isaacs/read-installed/issues"
|
|
},
|
|
"homepage": "https://github.com/isaacs/read-installed#readme",
|
|
"_id": "read-installed@4.0.3",
|
|
"_shasum": "ff9b8b67f187d1e4c29b9feb31f6b223acd19067",
|
|
"_from": "read-installed@4.0.3"
|
|
}
|
|
|