UNPKG

1.68 kBJSONView Raw
1{
2 "name": "@botonic/cli",
3 "description": "Build Chatbots Using React",
4 "version": "0.9.0",
5 "bin": {
6 "botonic": "./bin/run"
7 },
8 "bugs": "https://github.com/hubtype/botonic/issues",
9 "dependencies": {
10 "@oclif/command": "^1",
11 "@oclif/config": "^1",
12 "@oclif/plugin-help": "^2",
13 "analytics-node": "^3.3.0",
14 "colors": "^1.2.1",
15 "folder-hash": "^3.0.0",
16 "form-data": "^2.3.2",
17 "fs-extra": "^8.1.0",
18 "inquirer": "^6.3.1",
19 "ora": "^3.0.0",
20 "tslib": "^1",
21 "zip-a-folder": "0.0.9"
22 },
23 "devDependencies": {
24 "@oclif/dev-cli": "^1",
25 "@oclif/test": "^1",
26 "@oclif/tslint": "^3",
27 "@types/node": "^12",
28 "globby": "^8",
29 "ts-node": "^7",
30 "tslint": "^5.9.1",
31 "typescript": "^3.5.3"
32 },
33 "engines": {
34 "node": ">=8.0.0"
35 },
36 "files": [
37 "/bin",
38 "/lib",
39 "/npm-shrinkwrap.json",
40 "/oclif.manifest.json",
41 "/scripts",
42 "/templates"
43 ],
44 "homepage": "https://github.com/hubtype/botonic",
45 "keywords": [
46 "oclif"
47 ],
48 "license": "MIT",
49 "main": "lib/index.js",
50 "oclif": {
51 "commands": "./lib/commands",
52 "bin": "botonic",
53 "plugins": [
54 "@oclif/plugin-help"
55 ]
56 },
57 "repository": "hubtype/botonic",
58 "scripts": {
59 "build": "rm -rf lib && tsc",
60 "postpack": "rm -f oclif.manifest.json npm-shrinkwrap.json",
61 "posttest": "tslint -p test -t stylish",
62 "prepack": "oclif-dev manifest && oclif-dev readme && npm shrinkwrap",
63 "test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
64 "version": "oclif-dev readme && git add README.md",
65 "postinstall": "node scripts/postinstall.js"
66 },
67 "types": "lib/index.d.ts"
68}