-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@pnpm/merge-driver",
"version": "0.2.0-0",
"description": "A merge driver for pnpm-lock.yaml",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"bin": {
"pnpm-merge-driver": "lib/cli.js"
},
"files": [
"lib"
],
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "tslint -c tslint.json --project .",
"build": "rimraf lib && tsc",
"test": "rimraf .store && pnpm lint && jest",
"prepublishOnly": "pnpm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnpm/merge-driver.git"
},
"keywords": [
"pnpm",
"git",
"merge",
"driver"
],
"author": "Zoltan Kochan <[email protected]> (https://www.kochan.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/merge-driver/issues"
},
"homepage": "https://github.com/pnpm/merge-driver#readme",
"dependencies": {
"@pnpm/exec": "^2.0.0",
"@pnpm/lockfile-file": "^3.2.1",
"@pnpm/logger": "^3.2.3",
"@pnpm/prune-lockfile": "^2.0.19",
"ramda": "^0.27.2",
"semver": "^7.5.4"
},
"devDependencies": {
"@types/ramda": "^0.27.66",
"@types/semver": "^7.5.0",
"@types/tape": "^4.13.4",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"tempy": "^1.0.1",
"ts-jest": "^26.5.6",
"tslint": "^6.1.3",
"typescript": "^4.9.5",
"write-json-file": "^4.3.0"
}
}