-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.24 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
{
"name": "@rgrove/synchrotron",
"version": "2.0.1",
"description": "Watches a local directory and syncs files to another directory or a remote destination using rsync whenever changes occur.",
"keywords": [
"sync",
"synchronize",
"rsync"
],
"author": "Ryan Grove",
"license": "ISC",
"homepage": "https://github.com/rgrove/synchrotron#readme",
"bugs": {
"url": "https://github.com/rgrove/synchrotron/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rgrove/synchrotron.git"
},
"engines": {
"node": ">=12"
},
"exports": "./lib/Synchrotron.mjs",
"main": "./lib/Synchrotron.mjs",
"bin": {
"synchrotron": "bin/cli.mjs"
},
"files": [
"bin/",
"lib/"
],
"dependencies": {
"chalk": "^5.0.1",
"chokidar": "^3.5.3",
"find-up": "^6.3.0",
"graceful-fs": "^4.2.9",
"node-notifier": "^10.0.1",
"ora": "^6.1.0",
"which": "^2.0.2",
"yargs": "^17.4.0"
},
"devDependencies": {
"@rgrove/eslint-config": "^4.0.0",
"eslint": "^8.11.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-security": "^1.4.0"
},
"scripts": {
"lint": "eslint ."
}
}