-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.78 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
{
"name": "ce-dev",
"description": "Local Stack wrapper tool",
"version": "1.2.4",
"author": " @pm98zz-c",
"bin": {
"ce-dev": "./bin/run"
},
"bugs": "https://github.com/codeenigma/ce-dev/issues",
"dependencies": {
"@oclif/command": "^1.6.1",
"@oclif/config": "^1.15.1",
"@oclif/plugin-autocomplete": "^0.2.0",
"@oclif/plugin-help": "^2.2.3",
"cli-ux": "^5.4.6",
"inquirer": "^7.1.0",
"inquirer-fuzzy-path": "^2.3.0",
"js-yaml": "^3.13.1",
"tslib": "^1.11.2"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@types/inquirer": "^6.5.0",
"@types/node": "^10.17.21",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.4.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.2.0",
"eslint-plugin-jsdoc": "^29.2.0",
"eslint-plugin-oclif": "^0.1.0",
"globby": "^10.0.2",
"prettier": "^2.0.5",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"templates"
],
"repository": "https://github.com/codeenigma/ce-dev",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "ce-dev",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete"
]
},
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest",
"readme": "mv README.md README.save && cp docs/Commands.md README.md && oclif-dev readme && mv README.md docs/Commands.md && mv README.save README.md",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}