UNPKG

2.02 kBJSONView Raw
1{
2 "name": "@anycli/cli",
3 "description": "anycli: create your own CLI",
4 "version": "0.33.10",
5 "author": "Jeff Dickey @jdxcode",
6 "anycli": {
7 "commands": "./lib/commands",
8 "plugins": [
9 "@anycli/plugin-help",
10 "@anycli/plugin-not-found"
11 ],
12 "bin": "anycli"
13 },
14 "bin": {
15 "anycli": "./bin/run"
16 },
17 "bugs": "https://github.com/anycli/cli/issues",
18 "dependencies": {
19 "@anycli/command": "^1.2.9",
20 "@anycli/config": "^1.3.9",
21 "@anycli/errors": "^0.2.0",
22 "@anycli/plugin-help": "^0.6.3",
23 "@anycli/plugin-not-found": "^0.1.16",
24 "debug": "^3.1.0",
25 "fixpack": "^2.3.1",
26 "lodash": "^4.17.5",
27 "sort-pjson": "^1.0.2",
28 "yeoman-environment": "^2.0.5",
29 "yeoman-generator": "^2.0.2",
30 "yosay": "^2.0.1"
31 },
32 "devDependencies": {
33 "@anycli/dev-cli": "^0.1.6",
34 "@anycli/tslint": "^0.2.6",
35 "@types/lodash": "^4.14.101",
36 "@types/read-pkg": "^3.0.0",
37 "@types/shelljs": "^0.7.8",
38 "@types/yeoman-generator": "^2.0.1",
39 "@types/yosay": "^0.0.29",
40 "chai": "^4.1.2",
41 "eslint": "^4.17.0",
42 "eslint-config-anycli": "^1.3.2",
43 "execa": "^0.9.0",
44 "fancy-test": "^1.0.1",
45 "fs-extra": "^5.0.0",
46 "globby": "^7.1.1",
47 "mocha": "^5.0.0",
48 "npm-run-path": "^2.0.2",
49 "nps": "^5.7.1",
50 "nps-utils": "^1.5.0",
51 "shelljs": "^0.8.1",
52 "tmp": "^0.0.33",
53 "ts-node": "^4.1.0",
54 "typescript": "^2.7.1"
55 },
56 "engines": {
57 "node": ">=8.0.0"
58 },
59 "files": [
60 ".anycli.manifest.json",
61 "/bin",
62 "/lib",
63 "/templates"
64 ],
65 "homepage": "https://github.com/anycli/cli",
66 "keywords": [
67 "anycli"
68 ],
69 "license": "MIT",
70 "main": "lib/index.js",
71 "repository": "anycli/cli",
72 "scripts": {
73 "build": "rm -rf lib && tsc",
74 "lint": "nps lint",
75 "postpublish": "rm .anycli.manifest.json",
76 "posttest": "yarn run lint",
77 "prepublishOnly": "yarn run build && anycli-dev manifest -o .anycli.manifest.json",
78 "test": "nps test"
79 },
80 "types": "lib/index.d.ts"
81}