UNPKG

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