Files
pnpm/packages/file-reporter/package.json
2021-10-19 17:40:20 +03:00

41 lines
1.0 KiB
JSON

{
"name": "@pnpm/file-reporter",
"version": "2.0.0",
"description": "A file reporter for pnpm",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"scripts": {
"lint": "eslint src/**/*.ts test/**/*.ts",
"test": "pnpm run compile && pnpm run _test",
"prepublishOnly": "pnpm run compile",
"_test": "jest",
"compile": "rimraf lib tsconfig.tsbuildinfo && tsc --build && pnpm run lint -- --fix"
},
"repository": "https://github.com/pnpm/pnpm/blob/master/packages/file-reporter",
"keywords": [
"pnpm6",
"pnpm-reporter"
],
"engines": {
"node": ">=12.17"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/master/packages/file-reporter#readme",
"dependencies": {
"graceful-fs": "^4.2.6",
"path-exists": "^4.0.0"
},
"devDependencies": {
"exists-file": "^3.0.2",
"ndjson": "^2.0.0"
},
"funding": "https://opencollective.com/pnpm"
}