UNPKG

1.18 kBJSONView Raw
1{
2 "name": "@oclif/example-single-ts",
3 "description": "example single command CLI built with dxcli",
4 "version": "1.10.2",
5 "author": "Jeff Dickey @jdxcode",
6 "bin": {
7 "example-single-ts": "./bin/run"
8 },
9 "bugs": "https://github.com/oclif/example-single-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/test": "^1",
18 "@types/chai": "^4",
19 "@types/mocha": "^5",
20 "@types/node": "^10",
21 "chai": "^4",
22 "mocha": "^5",
23 "nyc": "^12",
24 "ts-node": "^7",
25 "typescript": "^3.0"
26 },
27 "engines": {
28 "node": ">=8.0.0"
29 },
30 "files": [
31 "/bin",
32 "/lib"
33 ],
34 "homepage": "https://github.com/oclif/example-single-ts",
35 "keywords": [
36 "oclif"
37 ],
38 "license": "MIT",
39 "main": "lib/index.js",
40 "oclif": {
41 "bin": "example-single-ts"
42 },
43 "repository": "oclif/example-single-ts",
44 "scripts": {
45 "posttest": "tsc -p test --noEmit",
46 "prepack": "rm -rf lib && tsc",
47 "prepare": "rm -rf lib && tsc",
48 "test": "nyc mocha --forbid-only \"test/**/*.test.ts\""
49 },
50 "types": "lib/index.d.ts"
51}