-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
56 lines (56 loc) · 1.17 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
{
"name": "sync-directory",
"version": "6.0.4",
"description": "sync two directories by copying or creating hardlink",
"main": "./index.js",
"module": "./index.mjs",
"exports": {
".": {
"require": {
"default": "./index.js",
"types": "./index.d.ts"
},
"import": {
"default": "./index.mjs",
"types": "./index.d.mts"
}
}
},
"types": "./index.d.ts",
"scripts": {
"test": "npx 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": "^7.0.1",
"is-absolute": "^1.0.0",
"readdir-enhanced": "^1.5.2"
},
"devDependencies": {
"mocha": "^10.0.0",
"sinon": "^14.0.0"
}
}