-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.49 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.49 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "supersync",
"version": "1.0.0",
"description": "A tool to sync local folder to remote SSH destination",
"main": "src/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bin": {
"supersync": "src/index.js"
},
"scripts": {
"start": "node src/index.js",
"dev": "npm link && supersync",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"prepare": "husky install"
},
"keywords": [
"sync",
"ssh",
"rsync",
"remote",
"file-sync"
],
"author": "lpetrov",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lpetrov/supersync.git"
},
"bugs": {
"url": "https://github.com/lpetrov/supersync/issues"
},
"homepage": "https://github.com/lpetrov/supersync#readme",
"dependencies": {
"chalk": "^5.4.1",
"chokidar": "^4.0.1",
"micromatch": "^4.0.5",
"rc": "^1.2.8",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.11",
"prettier": "^3.1.1"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"src",
"README.md",
"LICENSE"
]
}