-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.53 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "npm-backup",
"version": "0.1.0",
"description": "Makes an offline backup of an NPM package.",
"main": "./bin/backup.js",
"author": "Nyctfall <[email protected]>",
"license": "MIT",
"bin": {
"npm-backup": "./bin/backup.js"
},
"scripts": {
"test": "jest __tests__/*.ts",
"lint": "eslint .",
"format": "prettier .",
"spellcheck": "cspell",
"pre-commit": "lint-staged --verbose",
"dev": "tsc --build --watch --pretty --verbose",
"esbuild": "node esbuild.mjs",
"build": "npm run esbuild && tsc --build --pretty --verbose --declaration --emitDeclarationOnly",
"start": "node ./bin/backup.js",
"npm-backup": "node ./bin/backup.js",
"prepare": "husky install && node esbuild.mjs"
},
"engines": {
"node": ">= 16"
},
"keywords": [
"backup",
"back-up",
"offline",
"off-line",
"without",
"with-out",
"internet",
"package",
"pkg",
"npm",
"pack"
],
"dependencies": {
"chalk": "^5.3.0",
"commander": "^9.3.0",
"fs-extra": "^10.1.0",
"inquirer": "^8.2.4",
"semver": "^7.5.4",
"validate-npm-package-name": "^5.0.0"
},
"peerDependencies": {
"npm": ">=6.x.x",
"yarn": ">=0.x.x || >=1.x.x"
},
"peerDependenciesMeta": {
"npm": {
"optional": true
},
"yarn": {
"optional": true
}
},
"devDependencies": {
"@types/eslint": "8.x.x",
"@types/fs-extra": "^11.0.1",
"@types/gulp": "^4.0.13",
"@types/inquirer": "8.x.x",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@types/semver": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"babel-jest": "^29.6.2",
"cli-mocker": "^1.0.4",
"concurrently": "^8.2.0",
"cspell": "^7.3.2",
"esbuild": "^0.19.2",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-cli": "^2.3.0",
"gulp-eslint": "^6.0.0",
"gulp-jest": "^4.0.4",
"gulp-jsdoc3": "^3.0.0",
"gulp-prettier": "^5.0.0",
"gulp-typescript": "6.0.0-alpha.1",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jsdoc": "^4.0.2",
"lint-staged": "^14.0.1",
"prettier": "^3.0.0",
"prettier-eslint": "^15.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vitest": "^0.34.3",
"yargs": "^17.7.2"
},
"repository": {
"type": "git",
"url": "git://github.com/nyctfall/npm-backup.git"
}
}