UNPKG

1.56 kBJSONView Raw
1{
2 "name": "@anycli/example-single-ts",
3 "description": "example single command CLI built with dxcli",
4 "version": "0.9.0",
5 "author": "Jeff Dickey @jdxcode",
6 "anycli": {
7 "bin": "example-single-ts"
8 },
9 "bin": {
10 "example-single-ts": "./bin/run"
11 },
12 "bugs": "https://github.com/anycli/example-single-ts/issues",
13 "dependencies": {
14 "@anycli/command": "^0.3.7",
15 "@anycli/config": "^0.3.0",
16 "@anycli/plugin-help": "^0.4.1",
17 "cli-ux": "^3.3.13"
18 },
19 "devDependencies": {
20 "@anycli/test": "^0.10.3",
21 "@anycli/tslint": "^0.2.2",
22 "@types/chai": "^4.1.2",
23 "@types/lodash": "^4.14.100",
24 "@types/mocha": "^2.2.48",
25 "@types/nock": "^9.1.2",
26 "@types/node": "^9.4.0",
27 "@types/node-notifier": "^0.0.28",
28 "@types/read-pkg": "^3.0.0",
29 "chai": "^4.1.2",
30 "concurrently": "^3.5.1",
31 "eslint": "^4.16.0",
32 "eslint-config-anycli": "^1.3.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 "/bin",
42 "/lib"
43 ],
44 "homepage": "https://github.com/anycli/example-single-ts",
45 "keywords": [
46 "anycli"
47 ],
48 "license": "MIT",
49 "main": "lib/index.js",
50 "repository": "anycli/example-single-ts",
51 "scripts": {
52 "build": "rm -rf lib && tsc",
53 "lint": "concurrently -p command \"eslint .\" \"tsc -p test --noEmit\" \"tslint -p test\"",
54 "posttest": "yarn run lint",
55 "prepublishOnly": "yarn run build",
56 "test": "mocha --forbid-only \"test/**/*.test.ts\""
57 },
58 "types": "lib/index.d.ts"
59}