UNPKG

1.48 kBJSONView Raw
1{
2 "name": "@oclif/example-multi-ts",
3 "description": "example multi-command CLI built with typescript",
4 "version": "1.8.0",
5 "author": "Jeff Dickey @jdxcode",
6 "bin": {
7 "example-multi-ts": "./bin/run"
8 },
9 "bugs": "https://github.com/oclif/example-multi-ts/issues",
10 "dependencies": {
11 "@oclif/command": "^1",
12 "@oclif/config": "^1",
13 "@oclif/plugin-help": "^2",
14 "tslib": "^1"
15 },
16 "devDependencies": {
17 "@oclif/dev-cli": "^1",
18 "@oclif/test": "^1",
19 "@types/chai": "^4",
20 "@types/mocha": "^5",
21 "@types/node": "^10",
22 "chai": "^4",
23 "globby": "^8",
24 "mocha": "^5",
25 "nyc": "^12",
26 "ts-node": "^6",
27 "typescript": "^2.9"
28 },
29 "engines": {
30 "node": ">=8.0.0"
31 },
32 "files": [
33 "/bin",
34 "/lib",
35 "/oclif.manifest.json"
36 ],
37 "homepage": "https://github.com/oclif/example-multi-ts",
38 "keywords": [
39 "oclif"
40 ],
41 "license": "MIT",
42 "main": "lib/index.js",
43 "oclif": {
44 "commands": "./lib/commands",
45 "bin": "example-multi-ts",
46 "plugins": [
47 "@oclif/plugin-help"
48 ]
49 },
50 "repository": "oclif/example-multi-ts",
51 "scripts": {
52 "postpack": "rm -f oclif.manifest.json",
53 "posttest": "tsc -p test --noEmit",
54 "prepack": "rm -rf lib && tsc && oclif-dev manifest && oclif-dev readme",
55 "prepare": "rm -rf lib && tsc",
56 "test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
57 "version": "oclif-dev readme && git add README.md"
58 },
59 "types": "lib/index.d.ts"
60}