-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.34 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.34 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
{
"name": "hash-backup",
"type": "module",
"version": "2.6.1",
"description": "A deduplicating backup system that stores each file by its hash, but also stores metadata (timestamps, readonly attribute, and type of symlink (on Windows)), aiming to be perfect storage.",
"main": "main.mjs",
"exports": {
".": "./main.mjs",
"./test": "./test/test_func.mjs",
"./test/perform_test": "./test/perform_test.mjs",
"./package.json": "./package.json"
},
"scripts": {
"test": "node test/perform_test.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coolguy284/node-hash-backup.git"
},
"author": "coolguy284 <coolguy284v64@gmail.com> (https://github.com/coolguy284)",
"license": "(MIT OR Unlicense)",
"bugs": {
"url": "https://github.com/coolguy284/node-hash-backup/issues"
},
"homepage": "https://github.com/coolguy284/node-hash-backup#readme",
"optionalDependencies": {
"hash-backup-native-fs": "https://gitpkg.vercel.app/coolguy284/node-hash-backup/subpkgs/hb_native_fs?3decd5ebde4e9c067573d11472676c48e7f3f78c",
"lzma-native": "^8.0.6"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@stylistic/eslint-plugin": "^4.1.0",
"@types/node": "^22.13.7",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0"
}
}