UNPKG

1.37 kBJSONView Raw
1{
2 "name": "@anycli/example-single-ts",
3 "description": "example single command CLI built with dxcli",
4 "version": "0.9.12",
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": "^1.2.13",
15 "@anycli/config": "^1.3.23",
16 "@anycli/errors": "^0.2.1",
17 "@anycli/plugin-help": "^0.6.8"
18 },
19 "devDependencies": {
20 "@anycli/test": "^0.10.11",
21 "@anycli/tslint": "^0.2.7",
22 "@types/chai": "^4.1.2",
23 "@types/mocha": "^2.2.48",
24 "@types/node": "^9.4.1",
25 "chai": "^4.1.2",
26 "concurrently": "^3.5.1",
27 "mocha": "^5.0.0",
28 "ts-node": "^4.1.0",
29 "typescript": "^2.7.1"
30 },
31 "engines": {
32 "node": ">=8.0.0"
33 },
34 "files": [
35 "/bin",
36 "/lib"
37 ],
38 "homepage": "https://github.com/anycli/example-single-ts",
39 "keywords": [
40 "anycli"
41 ],
42 "license": "MIT",
43 "main": "lib/index.js",
44 "repository": "anycli/example-single-ts",
45 "scripts": {
46 "build": "rm -rf lib && tsc",
47 "lint": "concurrently -p command \"tsc -p test --noEmit\" \"tslint -p test -t stylish\"",
48 "posttest": "yarn run lint",
49 "prepublishOnly": "yarn run build",
50 "test": "mocha --forbid-only \"test/**/*.test.ts\""
51 },
52 "types": "lib/index.d.ts"
53}