-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·96 lines (96 loc) · 2.34 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
{
"name": "npm-super-pack",
"version": "0.1.0",
"description": "This will make an offline backup of an NPM package.",
"main": "./bin/backup.js",
"bin": {
"npm-super-pack": "./bin/backup.js"
},
"scripts": {
"test": "jest __tests__/*.ts",
"dev": "tsc --build --watch --pretty --verbose",
"build": "tsc --build --pretty --verbose",
"start": "node ./bin/backup.js",
"npm-super-pack": "node ./bin/backup.js"
},
"engines": {
"node": ">= 12"
},
"keywords": [
"backup",
"back-up",
"offline",
"off-line",
"without",
"with-out",
"internet",
"package",
"pkg",
"npm",
"pack"
],
"author": "Nyctfall <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^5.0.1",
"commander": "^9.3.0",
"fs-extra": "^10.1.0",
"inquirer": "^8.2.4",
"semver": "^7.3.7"
},
"peerDependencies": {
"npm": ">=6.x.x",
"yarn": ">=0.x.x"
},
"peerDependenciesMeta": {
"npm": {
"optional": true
},
"yarn": {
"optional": true
}
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@babel/eslint-plugin": "^7.17.7",
"@babel/plugin-transform-typescript": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/eslint": "^7.29.0",
"@types/fs-extra": "^9.0.13",
"@types/gulp": "^4.0.9",
"@types/inquirer": "^8.2.1",
"@types/jest": "^27.5.2",
"@types/node": "^14.18.21",
"@types/prettier": "^2.6.3",
"@types/semver": "^7.3.10",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^27.5.1",
"concurrently": "^7.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.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": "^4.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^27.5.1",
"jsdoc": "^3.6.10",
"prettier": "^2.7.1",
"ts-jest": "^27.1.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.4",
"yargs": "^17.5.1"
},
"private": "true",
"repository": {
"type": "git",
"url": "git://github.com/nyctfall/npm-backup.git"
}
}