Files
pnpm/lockfile/lockfile-utils/package.json
2024-04-12 14:03:45 +02:00

55 lines
1.4 KiB
JSON

{
"name": "@pnpm/lockfile-utils",
"version": "10.0.0",
"description": "Utils for dealing with pnpm-lock.yaml",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=18.12"
},
"files": [
"lib",
"!*.map"
],
"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/lockfile/lockfile-utils",
"keywords": [
"pnpm9",
"pnpm",
"shrinkwrap",
"lockfile"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/lockfile/lockfile-utils#readme",
"devDependencies": {
"@pnpm/lockfile-utils": "workspace:*",
"@types/js-yaml": "^4.0.9",
"@types/ramda": "0.29.12",
"tempy": "^1.0.1",
"write-yaml-file": "^5.0.0",
"yaml-tag": "1.1.0"
},
"dependencies": {
"@pnpm/dependency-path": "workspace:*",
"@pnpm/lockfile-types": "workspace:*",
"@pnpm/pick-fetcher": "workspace:*",
"@pnpm/resolver-base": "workspace:*",
"@pnpm/types": "workspace:*",
"get-npm-tarball-url": "^2.1.0",
"ramda": "npm:@pnpm/ramda@0.28.1"
},
"funding": "https://opencollective.com/pnpm",
"exports": {
".": "./lib/index.js"
}
}