UNPKG

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