UNPKG

3.26 kBJSONView Raw
1{
2 "name": "jovo-cli",
3 "version": "3.0.13",
4 "author": "jovotech",
5 "description": "jovo command line tool (beta)",
6 "main": "dist/src/index",
7 "types": "dist/src/index.d.ts",
8 "scripts": {
9 "prettier": "prettier --config ./.prettierrc.js --write \"{test,src}/**/*\" --list-different",
10 "test": "jest",
11 "test-debug": "jest --runInBand --detectOpenHandles --verbose",
12 "nodemon": "nodemon",
13 "build": "tsc",
14 "tslint": "node_modules/.bin/tslint -p tsconfig.json -c tslint.json",
15 "tsc": "node_modules/.bin/tsc",
16 "tscw": "tsc --watch",
17 "rimraf": "rimraf ./dist",
18 "postpack": "rimraf ./oclif.manifest.json",
19 "prepack": "rimraf ./dist && tsc -b && oclif-dev manifest && oclif-dev readme",
20 "version": "oclif-dev readme && git add README.md"
21 },
22 "bin": {
23 "jovo": "./bin/run"
24 },
25 "bugs": "https://github.com/jovotech/jovo-cli/issues",
26 "dependencies": {
27 "@oclif/command": "^1.5.19",
28 "@oclif/config": "^1.14.0",
29 "@oclif/plugin-help": "^2.2.3",
30 "@oclif/plugin-not-found": "1.2.3",
31 "boxen": "^4.2.0",
32 "chalk": "^2.4.1",
33 "child_process": "^1.0.2",
34 "cli-truncate": "^2.1.0",
35 "cross-spawn": "^7.0.1",
36 "csvtojson": "^2.0.10",
37 "dotenv": "^8.0.2",
38 "elegant-spinner": "^2.0.0",
39 "fs-extra": "^8.1.0",
40 "indent-string": "^4.0.0",
41 "inquirer": "^7.0.4",
42 "jovo-cli-core": "^3.0.3",
43 "jovo-cli-deploy-lambda": "^3.0.3",
44 "jovo-cli-platform-alexa": "^3.0.9",
45 "jovo-cli-platform-google": "^3.0.6",
46 "jovo-model": "^0.1.3",
47 "jovo-webhook-connector": "^3.0.3",
48 "latest-version": "^5.1.0",
49 "listr": "^0.14.3",
50 "lodash": "^4.17.15",
51 "log-symbols": "^3.0.0",
52 "log-update": "^3.4.0",
53 "nodemon": "^2.0.2",
54 "open": "^7.0.2",
55 "parse-json": "^5.0.0",
56 "resolve-bin": "^0.4.0",
57 "rimraf": "^3.0.2",
58 "tslib": "^1.10.0"
59 },
60 "devDependencies": {
61 "@oclif/dev-cli": "^1.22.2",
62 "@types/cross-spawn": "^6.0.1",
63 "@types/figures": "^3.0.1",
64 "@types/fs-extra": "^8.0.1",
65 "@types/jest": "^25.1.2",
66 "@types/lodash": "^4.14.149",
67 "@types/node": "^13.7.1",
68 "@types/open": "^6.2.1",
69 "@types/parse-json": "^4.0.0",
70 "@types/rimraf": "^2.0.3",
71 "globby": "^10.0.2",
72 "jest": "^25.1.0",
73 "prettier": "1.19.1",
74 "ts-jest": "^25.2.0",
75 "ts-node": "^8.6.2",
76 "tslint": "^5.19.0",
77 "tslint-config-prettier": "^1.18.0",
78 "typescript": "^3.7.5"
79 },
80 "engines": {
81 "node": ">=8.0.0"
82 },
83 "files": [
84 "/bin",
85 "/dist",
86 "/npm-shrinkwrap.json",
87 "/oclif.manifest.json"
88 ],
89 "homepage": "https://github.com/jovotech/jovo-cli#readme",
90 "jest": {
91 "transform": {
92 "^.+\\.tsx?$": "ts-jest"
93 },
94 "testURL": "http://localhost/",
95 "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
96 "testPathIgnorePatterns": [
97 "/dist/",
98 "/node_modules/",
99 "/tmpTestFolder.*/"
100 ],
101 "moduleFileExtensions": [
102 "ts",
103 "tsx",
104 "js",
105 "json"
106 ]
107 },
108 "keywords": [
109 "jovo"
110 ],
111 "license": "Apache-2.0",
112 "oclif": {
113 "commands": "./dist/commands",
114 "bin": "jovo-cli",
115 "plugins": [
116 "@oclif/plugin-help",
117 "@oclif/plugin-not-found"
118 ],
119 "hooks": {
120 "init": [
121 "./dist/hooks/ProjectHook",
122 "./dist/hooks/VersionHook"
123 ]
124 }
125 },
126 "repository": {
127 "type": "git",
128 "url": "git+https://github.com/jovotech/jovo-cli.git"
129 },
130 "gitHead": "62c75548069c6aaaec57a70e48371d3e8aa9974b"
131}