UNPKG

3.19 kBJSONView Raw
1{
2 "name": "jovo-cli",
3 "version": "3.0.4",
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 "boxen": "^4.2.0",
31 "chalk": "^2.4.1",
32 "child_process": "^1.0.2",
33 "cli-truncate": "^2.1.0",
34 "cross-spawn": "^7.0.1",
35 "csvtojson": "^2.0.10",
36 "dotenv": "^8.0.2",
37 "elegant-spinner": "^2.0.0",
38 "fs-extra": "^8.1.0",
39 "indent-string": "^4.0.0",
40 "inquirer": "^7.0.4",
41 "jovo-cli-core": "^3.0.1",
42 "jovo-cli-deploy-lambda": "^3.0.1",
43 "jovo-cli-platform-alexa": "^3.0.1",
44 "jovo-cli-platform-google": "^3.0.1",
45 "jovo-model": "^0.1.3",
46 "jovo-webhook-connector": "^3.0.1",
47 "latest-version": "^5.1.0",
48 "listr": "^0.14.3",
49 "lodash": "^4.17.15",
50 "log-symbols": "^3.0.0",
51 "log-update": "^3.4.0",
52 "nodemon": "^2.0.2",
53 "open": "^7.0.2",
54 "parse-json": "^5.0.0",
55 "resolve-bin": "^0.4.0",
56 "rimraf": "^3.0.2",
57 "tslib": "^1.10.0"
58 },
59 "devDependencies": {
60 "@oclif/dev-cli": "^1.22.2",
61 "@types/cross-spawn": "^6.0.1",
62 "@types/figures": "^3.0.1",
63 "@types/fs-extra": "^8.0.1",
64 "@types/jest": "^25.1.2",
65 "@types/lodash": "^4.14.149",
66 "@types/node": "^13.7.1",
67 "@types/open": "^6.2.1",
68 "@types/parse-json": "^4.0.0",
69 "@types/rimraf": "^2.0.3",
70 "globby": "^10.0.2",
71 "jest": "^25.1.0",
72 "prettier": "1.19.1",
73 "ts-jest": "^25.2.0",
74 "ts-node": "^8.6.2",
75 "tslint": "^5.19.0",
76 "tslint-config-prettier": "^1.18.0",
77 "typescript": "^3.7.5"
78 },
79 "engines": {
80 "node": ">=8.0.0"
81 },
82 "files": [
83 "/bin",
84 "/dist",
85 "/npm-shrinkwrap.json",
86 "/oclif.manifest.json"
87 ],
88 "homepage": "https://github.com/jovotech/jovo-cli#readme",
89 "jest": {
90 "transform": {
91 "^.+\\.tsx?$": "ts-jest"
92 },
93 "testURL": "http://localhost/",
94 "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
95 "testPathIgnorePatterns": [
96 "/dist/",
97 "/node_modules/",
98 "/tmpTestFolder.*/"
99 ],
100 "moduleFileExtensions": [
101 "ts",
102 "tsx",
103 "js",
104 "json"
105 ]
106 },
107 "keywords": [
108 "jovo"
109 ],
110 "license": "Apache-2.0",
111 "oclif": {
112 "commands": "./dist/commands",
113 "bin": "jovo-cli",
114 "plugins": [
115 "@oclif/plugin-help"
116 ],
117 "hooks": {
118 "init": [
119 "./dist/hooks/ProjectHook",
120 "./dist/hooks/VersionHook"
121 ]
122 }
123 },
124 "repository": {
125 "type": "git",
126 "url": "git+https://github.com/jovotech/jovo-cli.git"
127 },
128 "gitHead": "7f224c665de0279c1442baed2b536fa16c7b638d"
129}