Files
pnpm/packages/merge-lockfile-changes/package.json
2021-01-23 17:33:52 +02:00

44 lines
1.2 KiB
JSON

{
"name": "@pnpm/merge-lockfile-changes",
"version": "1.0.1",
"description": "Merges lockfiles. Can automatically fix merge conflicts",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"engines": {
"node": ">=10.16"
},
"files": [
"lib",
"!*.map"
],
"scripts": {
"lint": "eslint -c ../../eslint.json src/**/*.ts test/**/*.ts",
"_test": "jest",
"test": "pnpm run compile && pnpm run _test",
"prepublishOnly": "pnpm run compile",
"compile": "rimraf lib tsconfig.tsbuildinfo && tsc --build"
},
"repository": "https://github.com/pnpm/pnpm/blob/master/packages/merge-lockfile-changes",
"keywords": [
"pnpm",
"shrinkwrap",
"lockfile"
],
"author": "Zoltan Kochan <z@kochan.io> (https://www.kochan.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/master/packages/merge-lockfile-changes#readme",
"dependencies": {
"@pnpm/lockfile-types": "workspace:2.2.0",
"ramda": "^0.27.1",
"semver": "^7.3.4"
},
"funding": "https://opencollective.com/pnpm",
"devDependencies": {
"@types/ramda": "^0.27.35",
"@types/semver": "^7.3.4"
}
}