-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.51 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.51 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
{
"name": "@idajs/sync",
"version": "1.1.0",
"description": "A simple cross-platform left-to-right folder synchronization utility, written in pure JavaScript. Supports copy and delete exclusions.",
"main": "lib/index.js",
"bin": {
"idasync": "bin/idasync.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "node build.js",
"test": "jest",
"prepublishOnly": "npm run build",
"patch": "npm test && npm version patch && npm publish",
"minor": "npm test && npm version minor && npm publish",
"major": "npm test && npm version major && npm publish",
"push": "git push --follow-tags"
},
"keywords": [
"sync",
"rsync",
"folder",
"directory",
"synchronization",
"cross-platform",
"file-copy",
"backup"
],
"author": "Andriy Tevelyev",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pleasenophp/idasync.git"
},
"bugs": {
"url": "https://github.com/pleasenophp/idasync/issues"
},
"homepage": "https://github.com/pleasenophp/idasync#readme",
"files": [
"lib/",
"bin/",
"README.md",
"LICENSE"
],
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.js"
],
"collectCoverageFrom": [
"src/**/*.js",
"lib/**/*.js"
],
"coverageDirectory": "coverage"
},
"devDependencies": {
"jest": "^30.0.5"
}
}