This repository has been archived by the owner on Aug 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.52 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
{
"name": "mass-publish",
"version": "1.1.2",
"packageManager": "[email protected]",
"description": "A barebones NPM bulk publisher.",
"bin": {
"mass-publish": "./bin/run"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/fontsource/mass-publish.git",
"author": "Lotus <[email protected]>",
"license": "MIT",
"scripts": {
"postpack": "rimraf oclif.manifest.json",
"lint": "eslint . --ext .ts --config .eslintrc.json",
"prepack": "rimraf lib && tsc -b && oclif-dev manifest && oclif-dev readme ",
"command": "./bin/run",
"version": "oclif-dev readme && git add README.md",
"test": "jest"
},
"oclif": {
"commands": "./lib/commands",
"bin": "mass-publish",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available"
]
},
"engines": {
"node": ">=12.9.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@npmcli/package-json": "^1.0.1",
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.2",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"chalk": "^4.1.2",
"cli-ux": "^5.6.3",
"dotenv": "^10.0.0",
"execa": "^5.1.1",
"jsonfile": "^6.1.0",
"latest-version": "^5.1.0",
"libnpmpublish": "4.0.0",
"p-queue": "6",
"pacote": "^11.3.5",
"parse-git-config": "^3.0.0",
"semver": "^7.3.5",
"tslib": "^2.3.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@types/jest": "^26.0.24",
"@types/jsonfile": "^6.0.1",
"@types/libnpmpublish": "^4.0.0",
"@types/node": "^16.4.12",
"@types/pacote": "^11.1.1",
"@types/parse-git-config": "^3.0.1",
"@types/semver": "^7.3.8",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-unicorn": "^35.0.0",
"jest": "^27.0.6",
"oclif": "^1.18.1",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}