-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·87 lines (87 loc) · 1.72 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "cnys",
"version": "1.0.0",
"description": "Synchronization between remote server on change !",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/FabienGreard/cnys.git"
},
"homepage": "https://github.com/FabienGreard/cnys",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest",
"coverage": "jest --coverage --watchAll",
"format": "prettier --single-quote --write '**/*.{js,json,css,md}'",
"precommit": "lint-staged",
"publish": "npm publish ./"
},
"bin": {
"cnys": "./index.bin.js"
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"bail": true,
"testMatch": [
"**/test/*.test.js?(x)"
],
"testPathIgnorePatterns": [
"node_modules/"
],
"collectCoverageFrom": [
"lib/*.js",
"!lib/index.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": -10
}
}
},
"lint-staged": {
"**/*.{js,json,css,md}": [
"prettier --write --single-quote",
"git add"
]
},
"author": "FabienGreard",
"license": "MIT",
"dependencies": {
"chokidar": "^2.0.4",
"del": "^3.0.0",
"ssh2": "^0.6.1",
"tar": "^4.4.6",
"yargs": "^12.0.1"
},
"devDependencies": {
"husky": "^0.14.3",
"jest": "^23.5.0",
"lint-staged": "^7.2.2",
"nodemon": "^1.17.5",
"prettier": "^1.14.2"
},
"keywords": [
"synchronization",
"folder",
"cnys",
"sync",
"sftp",
"cyns",
"remote",
"netcat",
"ssh",
"upload",
"fs",
"watch",
"watchFile",
"watcher",
"watching",
"file",
"fsevent"
]
}