-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.55 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
{
"name": "perrisbrewery",
"description": "Create manpages, insert preinst, postinst, prerm and postrm",
"version": "10.0.2",
"author": "Piero Proietti",
"bin": {
"pb": "./bin/run.js"
},
"bugs": "https://github.com/pieroproietti/perrisbrewery/issues",
"dependencies": {
"@oclif/core": "^3.27.0",
"@oclif/plugin-autocomplete": "^3.2.6",
"@oclif/plugin-help": "^6.2.16",
"@oclif/plugin-version": "^2.2.15",
"@oclif/test": "^4.1.0",
"chalk": "^4.1.2",
"fs-extra": "^8.1.0",
"inquirer": "8.2.4",
"js-yaml": "^4.1.0",
"mustache": "^4.2.0",
"rehype-document": "^5.1.0",
"rehype-format": "^3.1.0",
"rehype-stringify": "^8.0.0",
"remark-man": "^7.0.0",
"remark-parse": "^9.0.0",
"remark-rehype": "^8.1.0",
"shelljs": "0.8.5",
"to-vfile": "6.1.0",
"tslib": "2.8.0",
"typescript": "^5.6.3",
"unified": "^9.2.2"
},
"devDependencies": {
"@types/inquirer": "9.0.7",
"@types/js-yaml": "^4.0.9",
"@types/mustache": "^4.2.5",
"@types/node": "^20.14.5",
"@types/shelljs": "^0.8.15",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.57.0",
"eslint-config-oclif": "^5.2.1",
"eslint-config-oclif-typescript": "^3.1.12",
"eslint-config-prettier": "^9.1.0",
"globby": "^11.1.0",
"nps": "^5.10.0",
"oclif": "^4.15.9",
"ts-node": "^10.9.2"
},
"dirname": "pb",
"engines": {
"node": ">=18.0.0"
},
"files": [
"/bin",
"/dist",
"/perrisbrewery"
],
"homepage": "https://penguins-eggs.net",
"keywords": [
"oclif",
"penguins-eggs"
],
"license": "MIT",
"main": "./dist/index.js",
"oclif": {
"bin": "pb",
"commands": "./dist/commands",
"dirname": "pb",
"topicSeparator": " ",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-version"
],
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
]
},
"repository": "pieroproietti/perrisbrewery",
"scripts": {
"build": "tsc -p .",
"lint-and-fix": "eslint . --ext .ts --fix --config .eslintrc",
"lint": "eslint . --ext .ts --config .eslintrc",
"manifest": "oclif manifest",
"readme": "oclif readme",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && oclif readme",
"test": "echo NO TESTS",
"version": "oclif readme && git add README.md"
},
"publishConfig": {
"not_used_registry": "http://localhost:4873",
"registry": "https://registry.npmjs.org"
},
"types": "lib/index.d.ts"
}