forked from googleapis/nodejs-dialogflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.51 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.51 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": "dialogflow",
"description": "Dialogflow API client for Node.js",
"version": "0.14.1",
"license": "Apache-2.0",
"author": "Google LLC",
"engines": {
"node": ">=8.10.0"
},
"repository": "googleapis/nodejs-dialogflow",
"main": "src/index.js",
"files": [
"protos",
"src",
"AUTHORS",
"COPYING"
],
"keywords": [
"google apis client",
"google api client",
"google apis",
"google api",
"google",
"google cloud platform",
"google cloud",
"cloud",
"google dialogflow",
"dialogflow",
"Dialogflow API"
],
"scripts": {
"docs": "jsdoc -c .jsdoc.js",
"lint": "eslint '**/*.js'",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"test": "c8 mocha",
"system-test": "mocha system-test/ --timeout 600000",
"all-test": "npm test && npm run system-test && npm run samples-test",
"fix": "eslint '**/*.js' --fix",
"docs-test": "linkinator docs",
"predocs-test": "npm run docs"
},
"dependencies": {
"google-gax": "^1.7.5",
"protobufjs": "^6.8.0"
},
"devDependencies": {
"c8": "^6.0.1",
"codecov": "^3.0.0",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.0.0",
"intelli-espower-loader": "^1.0.1",
"jsdoc": "^3.6.3",
"jsdoc-fresh": "^1.0.1",
"jsdoc-region-tag": "^1.0.2",
"linkinator": "^1.5.0",
"mocha": "^6.0.0",
"power-assert": "^1.4.4",
"prettier": "^1.7.4"
}
}