-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.76 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "botium-connector-dialogflow",
"version": "0.1.3",
"description": "Botium Connector for Google Dialogflow",
"main": "dist/botium-connector-dialogflow-cjs.js",
"module": "dist/botium-connector-dialogflow-es.js",
"engines": {
"node": ">=10"
},
"bin": {
"botium-connector-dialogflow-cli": "./bin/cli.js"
},
"scripts": {
"build": "npm run eslint && rollup -c",
"eslint": "eslint index.js src/**.js bin/**.js",
"eslint-fix": "eslint --fix index.js src/**.js bin/**.js",
"test": "echo \"Placeholder\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeforequity-at/botium-connector-dialogflow.git"
},
"author": "Botium GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeforequity-at/botium-core/issues"
},
"homepage": "https://www.botium.ai",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"rollup": "^2.7.6",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"dependencies": {
"@babel/runtime": "^7.9.6",
"@google-cloud/dialogflow": "^6.8.0",
"debug": "^4.3.7",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"mkdirp": "^3.0.1",
"randomatic": "^3.1.1",
"slug": "^9.1.0",
"uuid": "^10.0.0",
"yargs": "^17.7.2"
},
"peerDependencies": {
"botium-core": ">= 1.14.9"
}
}