-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.93 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
{
"name": "vmsnap",
"version": "1.0.1-beta",
"description": "A Node based backup and backup rotation tool for KVM domains.",
"main": "dist/vmsnap.js",
"scripts": {
"vmsnap": "node vmsnap.js",
"test": "echo \"No tests specified\"",
"lint": "npx eslint *.js",
"check-format": "npx prettier --check \"*.js\"",
"format": "npx prettier --write \"*.js\"",
"watch": "rimraf dist && esbuild --minify --platform=node --outdir=dist vmsnap.js libs/*.js --watch",
"build": "rimraf dist && esbuild --minify --platform=node --outdir=dist vmsnap.js libs/*.js",
"prepare": "husky || true"
},
"author": "Philip J. Guinchard",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/slackdaystudio/vmsnap.git"
},
"publishConfig": {
"@sentry0:registry": "https://npm.pkg.github.com"
},
"dependencies": {
"chalk": "^5.3.0",
"command-exists": "^1.2.9",
"dayjs": "^1.11.13",
"json-to-pretty-yaml": "^1.2.2",
"lockfile": "^1.0.4",
"pretty-bytes": "^6.1.1",
"winston": "^3.14.2",
"winston-console-format": "^1.0.8",
"yargs": "^17.7.2",
"yocto-spinner": "^0.1.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/preset-react": "^7.24.7",
"@types/yargs": "^17.0.33",
"esbuild": "^0.24.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"rimraf": "^6.0.1"
},
"lint-staged": {
"*.js": "prettier --check --ignore-unknown"
},
"bin": {
"vmsnap": "./dist/vmsnap.js"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18"
},
"type": "module",
"keywords": [
"kvm",
"backup",
"incremental",
"snapshot",
"rotation",
"qemu",
"virsh",
"virtualization",
"vm"
]
}