-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.39 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.39 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
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
{
"name": "@boco/packman",
"description": "Bulk download, publish, and copy packages and their dependencies by using the command line",
"author": "Noam Kfir <noam@boundlesscode.com>",
"contributors": [
"Noam Kfir <noam@boundlesscode.com>",
"Meir017"
],
"version": "0.22.0",
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec ts-node src/cli",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"build:watch": "watch 'npm run build' .",
"clean": "rimraf lib tsconfig.tsbuildinfo",
"pretest": "npm run build",
"test": "mocha",
"test:watch": "npm run test -- --watch",
"refresh": "npm run clean && rimraf ./node_modules ./package-lock.json && npm install",
"prepublishOnly": "npm run clean && npm run test && npm run build && git push && git push --tags"
},
"keywords": [
"tgz",
"npm",
"package.json",
"package-lock",
"registry",
"download",
"publish",
"migrate",
"copy",
"tarballs"
],
"dependencies": {
"@boco/pino-pretty": "^3.3.1-alpha-4",
"@boco/sade": "^1.6.2-boco-3",
"archiver": "^5.1.0",
"axios": "^0.24.0",
"axios-concurrency": "^1.0.3",
"camelcase": "^6.2.0",
"chokidar": "^3.4.3",
"colors": "^1.4.0",
"dayjs": "^1.9.8",
"extract-zip": "^2.0.1",
"glob": "^7.1.6",
"graceful-fs": "^4.2.4",
"is-valid-path": "^0.1.1",
"mkdirp": "^1.0.4",
"object.fromentries": "^2.0.3",
"password-prompt": "^1.1.2",
"pino": "^7.0.5",
"replace-in-file": "^6.1.0",
"request": "^2.88.2",
"semver": "^7.3.4",
"tar": "^6.0.5",
"validate-npm-package-name": "^3.0.0"
},
"bin": {
"packman": "bin/packman"
},
"files": [
"lib",
"bin",
"!lib/**/*.spec.js",
"!lib/**/*.map"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BoundlessCode/packman.git"
},
"engines": {
"node": ">=12.4"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/graceful-fs": "^4.1.4",
"@types/mkdirp": "^1.0.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"@types/pino": "^6.3.4",
"@types/request-promise": "^4.1.47",
"@types/semver": "^7.3.4",
"@types/tar": "^6.1.0",
"chai": "^4.2.0",
"mocha": "^9.1.3",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.1.3",
"watch": "^0.13.0"
}
}