UNPKG

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