This repository was archived by the owner on Mar 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.46 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.46 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
{
"name": "@formidablejs/craftsman",
"version": "0.6.10",
"author": "Donald Pakkies <donaldpakkies@gmail.com>",
"bin": {
"craftsman": "./bin/run"
},
"bugs": "https://github.com/formidablejs/craftsman/issues",
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"globby": "^10.0.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/formidablejs/craftsman",
"keywords": [
"formidable",
"formidablejs",
"craftsman",
"development cli"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "craftsman",
"plugins": [
"@oclif/plugin-help"
],
"hooks": {
"init": "./src/hooks/main"
}
},
"repository": "formidablejs/craftsman",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.3",
"@oclif/plugin-plugins": "^1.10.1",
"axios": "^0.22.0",
"chalk": "^4.1.2",
"chokidar": "^3.5.2",
"imba-shell": "^0.0.8",
"inquirer": "^8.2.0",
"unzipper": "^0.10.11"
}
}