Files
pnpm/packages/audit/package.json
2022-05-01 01:35:26 +03:00

51 lines
1.3 KiB
JSON

{
"name": "@pnpm/audit",
"version": "3.0.2",
"description": "Audit a lockfile",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"engines": {
"node": ">=14.19"
},
"scripts": {
"lint": "eslint src/**/*.ts test/**/*.ts",
"_test": "jest",
"test": "pnpm run compile && pnpm run _test",
"prepublishOnly": "pnpm run compile",
"compile": "tsc --build && pnpm run lint --fix"
},
"repository": "https://github.com/pnpm/pnpm/blob/main/packages/audit",
"keywords": [
"pnpm7",
"pnpm",
"audit"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/packages/audit#readme",
"devDependencies": {
"@pnpm/audit": "workspace:3.0.2",
"@pnpm/constants": "workspace:6.1.0",
"@pnpm/lockfile-file": "workspace:5.0.2",
"nock": "12.0.3"
},
"dependencies": {
"@pnpm/error": "workspace:3.0.1",
"@pnpm/fetch": "workspace:5.0.1",
"@pnpm/lockfile-types": "workspace:4.0.1",
"@pnpm/lockfile-utils": "workspace:4.0.2",
"@pnpm/lockfile-walker": "workspace:5.0.2",
"@pnpm/types": "workspace:8.0.1"
},
"funding": "https://opencollective.com/pnpm",
"exports": {
".": "./lib/index.js"
}
}