UNPKG

1.99 kBJSONView Raw
1{
2 "name": "@anycli/example-multi-ts",
3 "description": "example multi-command CLI built with typescript",
4 "version": "0.9.2",
5 "author": "Jeff Dickey @jdxcode",
6 "anycli": {
7 "commands": "./lib/commands",
8 "bin": "example-multi-ts",
9 "plugins": [
10 "@anycli/plugin-help",
11 "@anycli/plugin-not-found",
12 "@anycli/plugin-version"
13 ]
14 },
15 "bin": {
16 "example-multi-ts": "./bin/run"
17 },
18 "bugs": "https://github.com/anycli/example-multi-ts/issues",
19 "dependencies": {
20 "@anycli/command": "^0.3.7",
21 "@anycli/config": "^0.3.0",
22 "@anycli/dev-cli": "^0.1.3",
23 "@anycli/engine": "^0.3.2",
24 "@anycli/plugin-help": "^0.4.6",
25 "@anycli/plugin-not-found": "^0.1.14",
26 "@anycli/plugin-version": "^0.1.30",
27 "cli-ux": "^3.3.13"
28 },
29 "devDependencies": {
30 "@anycli/test": "^0.10.3",
31 "@anycli/tslint": "^0.2.2",
32 "@types/chai": "^4.1.2",
33 "@types/lodash": "^4.14.100",
34 "@types/mocha": "^2.2.48",
35 "@types/nock": "^9.1.2",
36 "@types/node": "^9.4.0",
37 "@types/node-notifier": "^0.0.28",
38 "@types/read-pkg": "^3.0.0",
39 "chai": "^4.1.2",
40 "concurrently": "^3.5.1",
41 "eslint": "^4.16.0",
42 "eslint-config-anycli": "^1.3.1",
43 "mocha": "^5.0.0",
44 "ts-node": "^4.1.0",
45 "typescript": "^2.7.1"
46 },
47 "engines": {
48 "node": ">=8.0.0"
49 },
50 "files": [
51 ".anycli.manifest.json",
52 "/bin",
53 "/lib"
54 ],
55 "homepage": "https://github.com/anycli/example-multi-ts",
56 "keywords": [
57 "anycli"
58 ],
59 "license": "MIT",
60 "main": "lib/index.js",
61 "repository": "anycli/example-multi-ts",
62 "scripts": {
63 "build": "rm -rf lib && tsc",
64 "lint": "concurrently -p command \"eslint .\" \"tsc -p test --noEmit\" \"tslint -p test\"",
65 "postpublish": "rm .anycli.manifest.json",
66 "posttest": "yarn run lint",
67 "prepublishOnly": "yarn run build && anycli-dev manifest -o .anycli.manifest.json",
68 "test": "mocha --forbid-only \"test/**/*.test.ts\""
69 },
70 "types": "lib/index.d.ts"
71}