-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1018 Bytes
/
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
{
"name": "@fanwang/pack-util",
"version": "3.2.1",
"description": "Pack all installed package in ./node_modules, and publish to Nexus self-hosted Registry.",
"bin": {
"pack-util": "./bin/index.js"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 16.17.0"
},
"type": "module",
"scripts": {
"test": "node bin/index.js pack",
"commit": "git add . && czg && git push",
"release": "bumpp package.json bin/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/vampirefan/pack-util.git"
},
"keywords": [
"npm",
"pack",
"publish"
],
"author": "fanwang",
"license": "MIT",
"dependencies": {
"commander": "^9.5.0",
"execa": "^9.4.0",
"form-data": "^4.0.0",
"inquirer": "^9.3.7",
"node-fetch": "^3.3.2",
"p-limit": "^6.1.0",
"yaml": "^2.5.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"bumpp": "^9.6.1",
"czg": "^1.10.1",
"taze": "^0.17.2"
}
}