mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-11 03:37:49 -04:00
37 lines
917 B
JSON
37 lines
917 B
JSON
{
|
|
"name": "@pnpm/read-modules-dir",
|
|
"version": "2.0.1",
|
|
"author": {
|
|
"name": "Zoltan Kochan",
|
|
"email": "z@kochan.io",
|
|
"url": "https://www.kochan.io/"
|
|
},
|
|
"description": "Finds all direct packages in node_modules",
|
|
"main": "lib/index.js",
|
|
"typings": "lib/index.d.ts",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"keywords": [],
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/master/packages/read-modules-dir",
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/master/packages/read-modules-dir#readme",
|
|
"scripts": {
|
|
"start": "pnpm run tsc -- --watch",
|
|
"test": "pnpm run tsc && pnpm run lint",
|
|
"lint": "tslint -c tslint.json --project .",
|
|
"tsc": "rimraf lib && tsc",
|
|
"prepublishOnly": "pnpm run tsc"
|
|
},
|
|
"dependencies": {
|
|
"mz": "2.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mz": "^2.7.0",
|
|
"rimraf": "3.0.0"
|
|
}
|
|
}
|