mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-11 01:15:11 -04:00
53 lines
1.5 KiB
JSON
53 lines
1.5 KiB
JSON
{
|
|
"name": "@pnpm/read-project-manifest",
|
|
"version": "2.0.5",
|
|
"description": "Read a project manifest (called package.json in most cases)",
|
|
"main": "lib/index.js",
|
|
"typings": "lib/index.d.ts",
|
|
"engines": {
|
|
"node": ">=12.17"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint src/**/*.ts test/**/*.ts",
|
|
"_test": "jest",
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"compile": "rimraf lib tsconfig.tsbuildinfo && tsc --build && pnpm run lint -- --fix"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/master/packages/read-project-manifest",
|
|
"keywords": [
|
|
"pnpm6",
|
|
"pnpm"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/master/packages/read-project-manifest#readme",
|
|
"dependencies": {
|
|
"@pnpm/error": "workspace:2.0.0",
|
|
"@pnpm/graceful-fs": "workspace:1.0.0",
|
|
"@pnpm/types": "workspace:7.4.0",
|
|
"@pnpm/write-project-manifest": "workspace:2.0.4",
|
|
"detect-indent": "^6.0.0",
|
|
"fast-deep-equal": "^3.1.3",
|
|
"is-windows": "^1.0.2",
|
|
"json5": "^2.1.3",
|
|
"parse-json": "^5.1.0",
|
|
"read-yaml-file": "^2.1.0",
|
|
"sort-keys": "^4.2.0",
|
|
"strip-bom": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/is-windows": "^1.0.0",
|
|
"@types/json5": "^2.2.0",
|
|
"@types/parse-json": "^4.0.0",
|
|
"tempy": "^1.0.0"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm"
|
|
}
|