-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.65 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.65 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
{
"name": "system-restore",
"version": "2.0.10",
"description": "Create Windows System Restore Points using NodeJS.",
"type": "commonjs",
"engines": {
"node": ">=18.0.0"
},
"bin": {
"system-restore": "./index.js"
},
"scripts": {
"clean": "rimraf coverage dist tsconfig.release.tsbuildinfo",
"build": "tsc -p tsconfig.release.json",
"watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint .",
"format": "prettier . --write",
"pretest": "npm run lint",
"test": "npm run test-only",
"test-only": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JacobHeater/node-system-restore.git"
},
"keywords": [
"Node",
"Windows",
"System Restore",
"Restore Point"
],
"author": "Jacob Heater <jacobheater@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/JacobHeater/node-system-restore#readme",
"bugs": {
"url": "https://github.com/JacobHeater/node-system-restore/issues"
},
"main": "dist/index.js",
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.30",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.3.4",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1"
},
"dependencies": {
"commander": "^14.0.0",
"fs-extra": "^11.3.0"
}
}