UNPKG

2.12 kBJSONView Raw
1{
2 "name": "botonic",
3 "description": "Build chatbots using React",
4 "version": "0.1.8",
5 "author": "ericmarcos @ericmarcos",
6 "bin": {
7 "botonic": "./bin/run"
8 },
9 "bugs": "https://github.com/hubtype/botonic/issues",
10 "dependencies": {
11 "@oclif/command": "^1.4.9",
12 "@oclif/config": "^1.4.0",
13 "@oclif/plugin-help": "^1.2.3",
14 "axios": "^0.18.0",
15 "chalk": "^2.3.2",
16 "cheerio": "^1.0.0-rc.2",
17 "cli-table2": "^0.2.0",
18 "colors": "^1.2.1",
19 "form-data": "^2.3.2",
20 "inquirer": "^5.1.0",
21 "mixpanel": "^0.9.0",
22 "next": "^5.0.0",
23 "ora": "^2.0.0",
24 "react": "^16.2.0",
25 "react-dom": "^16.2.0"
26 },
27 "devDependencies": {
28 "@oclif/dev-cli": "^1.9.0",
29 "@oclif/test": "^1.0.4",
30 "@oclif/tslint": "^1.1.0",
31 "@types/chai": "^4.1.2",
32 "@types/cheerio": "^0.22.7",
33 "@types/cli-table2": "^0.2.1",
34 "@types/inquirer": "0.0.41",
35 "@types/mixpanel": "^2.14.0",
36 "@types/mocha": "^5.0.0",
37 "@types/next": "^2.4.8",
38 "@types/node": "^9.6.2",
39 "chai": "^4.1.2",
40 "globby": "^8.0.1",
41 "mocha": "^5.0.5",
42 "ts-node": "5",
43 "tslib": "^1.9.0",
44 "tslint": "^5.9.1",
45 "typescript": "^2.8.1"
46 },
47 "engines": {
48 "node": ">=8.0.0"
49 },
50 "files": [
51 ".oclif.manifest.json",
52 "/bin",
53 "/lib",
54 "/scripts",
55 "/templates"
56 ],
57 "homepage": "https://github.com/hubtype/botonic",
58 "keywords": [
59 "oclif"
60 ],
61 "license": "MIT",
62 "main": "lib/index.js",
63 "oclif": {
64 "commands": "./lib/commands",
65 "bin": "botonic",
66 "plugins": [
67 "@oclif/plugin-help"
68 ]
69 },
70 "repository": "hubtype/botonic",
71 "scripts": {
72 "build": "rm -rf lib && tsc",
73 "clean": "rm -f .oclif.manifest.json",
74 "postpublish": "yarn run clean",
75 "posttest": "tsc -p test --noEmit && tslint -p test -t stylish",
76 "prepublishOnly": "yarn run build && oclif-dev manifest",
77 "preversion": "yarn run clean",
78 "postinstall": "node scripts/postinstall.js",
79 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
80 "version": "oclif-dev readme && git add README.md"
81 },
82 "types": "lib/index.d.ts"
83}