-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.11 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.11 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
{
"name": "create-formidable",
"version": "0.0.14",
"description": "The Formidable Framework Installer",
"author": "Donald Pakkies @donaldp",
"bin": {
"create-formidable": "bin/run.js"
},
"homepage": "https://github.com/formidablejs/create-formidable",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/formidablejs/create-formidable.git"
},
"files": [
"./bin",
"./dist",
"./oclif.manifest.json"
],
"dependencies": {
"@formidablejs/installer": "^0.9.13",
"@inquirer/prompts": "^7.4.1",
"@oclif/core": "^4",
"@oclif/plugin-help": "^6",
"@oclif/plugin-plugins": "^5"
},
"devDependencies": {
"@eslint/compat": "^1",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4",
"@types/chai": "^4",
"@types/mocha": "^10",
"@types/node": "^18",
"chai": "^4",
"eslint": "^9",
"eslint-config-oclif": "^6",
"eslint-config-prettier": "^10",
"mocha": "^10",
"oclif": "^4",
"shx": "^0.3.3",
"ts-node": "^10",
"typescript": "^5"
},
"oclif": {
"bin": "create-formidable",
"dirname": "create-formidable",
"commands": {
"strategy": "single",
"target": "./dist/index.js"
},
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " "
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=20.0.0"
},
"bugs": "https://github.com/formidablejs/create-formidable/issues",
"keywords": [
"formidable",
"full-stack"
],
"types": "dist/index.d.ts"
}