-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
130 lines (130 loc) · 3.72 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@flarum/cli",
"description": "A CLI for developing Flarum extensions",
"version": "2.0.0-beta.17",
"author": "Flarum Team",
"bin": {
"fl": "bin/run",
"flarum-cli": "bin/run"
},
"bugs": "https://github.com/flarum/cli/issues",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.14.2",
"@flarum/prettier-config": "^1.0.0",
"@oclif/dev-cli": "^1.26.0",
"@oclif/test": "^1.2.8",
"@types/chai": "^4.2.20",
"@types/ejs": "^3.1.0",
"@types/jest": "^27.0.3",
"@types/mem-fs-editor": "^7.0.0",
"@types/node": "^16.11.7",
"@types/pick-deep": "^1.0.0",
"@types/pluralize": "0.0.29",
"@types/prompts": "^2.0.14",
"@types/string": "0.0.31",
"@types/yosay": "^0.0.29",
"@typescript-eslint/parser": "^5.8.1",
"babel-jest": "^27.4.5",
"babel-plugin-module-resolver": "^4.1.0",
"chai": "^4.3.3",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "1.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.4.5",
"jest-extended": "^1.2.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.12.0",
"typescript": "4.4.4"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"boilerplate",
"stubs",
"php-subsystem"
],
"homepage": "https://github.com/flarum/cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "./lib/index.js",
"oclif": {
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"commands": "./lib/commands",
"bin": "flarum-cli",
"helpClass": "./lib/help",
"topicSeparator": " ",
"topics": {
"make backend": {
"description": "Add backend boilerplate code to an existing Flarum extension."
},
"make frontend": {
"description": "Add frontend boilerplate code to an existing Flarum extension."
},
"make": {
"description": "Add boilerplate code to an existing Flarum extension."
},
"audit": {
"description": "Checks for potential errors / updatable parts of a Flarum extension."
},
"update": {
"description": "Helper commands to update extensions for new versions of Flarum Core."
}
},
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-version"
]
},
"repository": "flarum/cli",
"prettier": "@flarum/prettier-config",
"scripts": {
"oclif-dev": "node -r tsconfig-paths/register node_modules/.bin/oclif-dev",
"format": "eslint . --ext .ts --config .eslintrc --fix && prettier --write .",
"postpack": "rm -f oclif.manifest.json",
"posttest": "prettier --check . && eslint . --ext .ts --config .eslintrc && tsc --build --dry",
"prepack": "rm -rf lib && tsc --project tsconfig.build.json && yarn oclif-dev manifest && yarn oclif-dev readme",
"test": "jest",
"version": "yarn oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts",
"dependencies": {
"@oclif/core": "^1.0.11",
"@oclif/errors": "^1.3.5",
"@oclif/plugin-help": "^5",
"@oclif/plugin-version": "^1",
"chalk": "^2.4.2",
"cli-ux": "^6.0.6",
"ejs": "^3.1.6",
"globby": "^10.0.2",
"mem-fs": "^2.2.1",
"mem-fs-editor": "^8.0.0",
"module-alias": "^2.2.2",
"pick-deep": "^1.0.0",
"pluralize": "^8.0.0",
"prompts": "^2.4.0",
"simple-git": "^2.48.0",
"spdx-license-list": "^6.4.0",
"string": "^3.3.3",
"tslib": "^1.14.1",
"yosay": "^2.0.2"
}
}