-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 896 Bytes
/
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
{
"name": "package-patcher",
"version": "0.0.2",
"description": "a simple cli tool to patch node_modules using jsdiff and node resolve",
"repository": {
"url": "https://github.com/abbasc52/package-patcher"
},
"type": "module",
"main": "dist/index.js",
"scripts": {
"create-patch": "node create-patch.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": "dist/cli.js",
"author": "Abbas Cyclewala",
"license": "MIT",
"dependencies": {
"diff": "^5.0.0",
"fs-extra": "^10.0.1",
"glob": "^7.2.0",
"got": "^12.0.3",
"tar-stream": "^2.2.0",
"upath": "^2.0.1",
"yargs": "^17.4.1",
"zlib": "^1.0.5"
},
"devDependencies": {
"@types/diff": "^5.0.2",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/tar-stream": "^2.2.2",
"@types/yargs": "^17.0.10",
"typescript": "^4.6.3"
}
}