forked from dialogflow/dialogflow-fulfillment-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 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
{
"name": "dialogflow-fulfillment",
"description": "Dialogflow Fulfillment Library for Node.js Beta",
"main": "src/dialogflow-fulfillment.js",
"version": "0.3.0-beta.1",
"license": "Apache-2.0",
"author": "Google Inc.",
"directories": {
"test": "test"
},
"engines": {
"node": "~8.0"
},
"scripts": {
"test": "npm run lint && ava",
"lint": "eslint --fix \"src/**/*.js\" \"test/*.js\" \"docs/*.js\"",
"docs": "node ./docs/generateDocs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dialogflow/dialogflow-fulfillment-nodejs.git"
},
"bugs": {
"url": "https://github.com/dialogflow/dialogflow-fulfillment-nodejs/issues"
},
"homepage": "https://github.com/dialogflow/dialogflow-fulfillment-nodejs#readme",
"keywords": [
"dialogflow",
"api.ai",
"client library",
"webhook",
"fulfillment"
],
"dependencies": {
"debug": "^2.2.0",
"actions-on-google": "2.0.0-alpha.1"
},
"devDependencies": {
"ava": "^0.24.0",
"eslint": "^4.15.0",
"eslint-config-google": "^0.9.1",
"jsdoc-to-markdown": "^4.0.1"
}
}