Files
pnpm/exec/run-npm/package.json
2023-03-24 15:52:20 +02:00

42 lines
951 B
JSON

{
"name": "@pnpm/run-npm",
"version": "6.0.0",
"description": "Runs the npm CLI",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"engines": {
"node": ">=16.14"
},
"scripts": {
"lint": "eslint \"src/**/*.ts\"",
"test": "pnpm run compile",
"prepublishOnly": "pnpm run compile",
"compile": "tsc --build && pnpm run lint --fix"
},
"repository": "https://github.com/pnpm/pnpm/blob/main/exec/run-npm",
"keywords": [
"pnpm8"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/exec/run-npm#readme",
"devDependencies": {
"@pnpm/run-npm": "workspace:*",
"@types/cross-spawn": "^6.0.2"
},
"dependencies": {
"cross-spawn": "^7.0.3",
"path-name": "^1.0.0"
},
"funding": "https://opencollective.com/pnpm",
"exports": {
".": "./lib/index.js"
}
}