UNPKG

1.64 kBJSONView Raw
1{
2 "name": "@anycli/example-multi-ts",
3 "description": "example multi-command CLI built with typescript",
4 "version": "0.9.13",
5 "author": "Jeff Dickey @jdxcode",
6 "anycli": {
7 "commands": "./lib/commands",
8 "bin": "example-multi-ts",
9 "plugins": [
10 "@anycli/plugin-help"
11 ]
12 },
13 "bin": {
14 "example-multi-ts": "./bin/run"
15 },
16 "bugs": "https://github.com/anycli/example-multi-ts/issues",
17 "dependencies": {
18 "@anycli/command": "^1.2.13",
19 "@anycli/config": "^1.3.24",
20 "@anycli/errors": "^0.2.1",
21 "@anycli/plugin-help": "^0.6.8",
22 "globby": "^7.1.1"
23 },
24 "devDependencies": {
25 "@anycli/dev-cli": "^0.3.2",
26 "@anycli/test": "^0.10.11",
27 "@anycli/tslint": "^0.2.7",
28 "@types/chai": "^4.1.2",
29 "@types/mocha": "^2.2.48",
30 "@types/node": "^9.4.1",
31 "chai": "^4.1.2",
32 "concurrently": "^3.5.1",
33 "mocha": "^5.0.0",
34 "ts-node": "^4.1.0",
35 "typescript": "^2.7.1"
36 },
37 "engines": {
38 "node": ">=8.0.0"
39 },
40 "files": [
41 ".anycli.manifest.json",
42 "/bin",
43 "/lib"
44 ],
45 "homepage": "https://github.com/anycli/example-multi-ts",
46 "keywords": [
47 "anycli"
48 ],
49 "license": "MIT",
50 "main": "lib/index.js",
51 "repository": "anycli/example-multi-ts",
52 "scripts": {
53 "build": "rm -rf lib && tsc",
54 "lint": "concurrently -p command \"tsc -p test --noEmit\" \"tslint -p test -t stylish\"",
55 "postpublish": "rm .anycli.manifest.json",
56 "posttest": "yarn run lint",
57 "prepublishOnly": "yarn run build && anycli-dev manifest && anycli-dev readme",
58 "test": "mocha --forbid-only \"test/**/*.test.ts\""
59 },
60 "types": "lib/index.d.ts"
61}