-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.57 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.57 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
{
"name": "v_tool",
"description": "V_Tool CLI for easier life and better development. \n ⩤⮓᚜⩔≜⧌᚛⮒⩥ \n Here to help with setup, run developer environment and help during development. \n Installing, configuring, running, reporting...generating code, sample structures.",
"version": "1.0.1",
"author": "[_.V._] @V-tech-tools-web-dev",
"bin": {
"v_tool": "./bin/run"
},
"bugs": "https://github.com/V-tech-tools-web-dev/V.Tools-DevSetup/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.2"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@oclif/test": "^1.2.8",
"chai": "^4.3.4",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"globby": "^10.0.2",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/V-tech-tools-web-dev/V.Tools-DevSetup",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "v_tool",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "V-tech-tools-web-dev/V.Tools-DevSetup",
"scripts": {
"postpack": "rimraf oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif-dev readme && git add README.md"
}
}