Files
pnpm/packages/audit/package.json
2019-11-16 01:52:31 +02:00

44 lines
1.1 KiB
JSON

{
"name": "@pnpm/audit",
"version": "1.0.0",
"description": "Audit a lockfile",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "tslint -c tslint.json src/**/*.ts test/**/*.ts",
"tsc": "rimraf lib && tsc",
"test": "pnpm run tsc && pnpm run lint && ts-node test",
"prepublishOnly": "pnpm run tsc"
},
"repository": "https://github.com/pnpm/pnpm/blob/master/packages/audit",
"keywords": [
"pnpm",
"audit"
],
"author": "Zoltan Kochan <z@kochan.io> (https://www.kochan.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://pnpm.js.org",
"devDependencies": {
"@pnpm/audit": "link:",
"@pnpm/lockfile-file": "workspace:3.0.1",
"rimraf": "3.0.0",
"tape": "4.11.0"
},
"dependencies": {
"@pnpm/fetch": "workspace:1.0.1",
"@pnpm/lockfile-types": "workspace:1.1.0",
"@pnpm/lockfile-utils": "workspace:2.0.2",
"@pnpm/lockfile-walker": "workspace:1.0.0",
"@pnpm/types": "workspace:4.0.0"
}
}