-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 999 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 999 Bytes
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
{
"name": "folder-diff-restore",
"version": "1.0.0-0",
"description": "A TypeScript library to compare two directories, generate diffs, and restore directories based on diffs.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build",
"release": "npm run build && npx np --tag=latest",
"release-beta": "npm run build && npx np --any-branch --no-tests --tag=beta"
},
"keywords": [
"folder",
"diff",
"compare",
"typescript",
"dir-compare"
],
"author": "",
"license": "ISC",
"dependencies": {
"debug": "^4.3.7",
"dir-compare": "^5.0.0",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"files": [
"dist"
]
}