forked from hoperyy/sync-directory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 971 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 971 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
42
43
44
{
"name": "sync-directory",
"version": "5.1.9",
"description": "sync two directories by copying or creating hardlink",
"main": "index.js",
"types": "./index.d.ts",
"scripts": {
"test": "mocha --timeout 10000"
},
"keywords": [
"fs",
"sync",
"async",
"promise",
"event",
"walk",
"absolute"
],
"bin": {
"syncdir": "./cmd.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoperyy/sync-directory.git"
},
"author": "https://github.com/hoperyy",
"license": "ISC",
"bugs": {
"url": "https://github.com/hoperyy/sync-directory/issues"
},
"homepage": "https://github.com/hoperyy/sync-directory#readme",
"dependencies": {
"chokidar": "^3.3.1",
"commander": "^6.2.0",
"fs-extra": "^11.1.0",
"is-absolute": "^1.0.0",
"readdir-enhanced": "^6.0.4"
},
"devDependencies": {
"mocha": "^10.2.0",
"sinon": "^15.0.1",
"timers-promises": "^1.0.1"
}
}