-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 891 Bytes
/
package.json
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
{
"name": "@tmtek/convo",
"version": "0.2.23",
"description": "A uility for building conversational responses in DialogFlow fufillments",
"main": "index.js",
"scripts": {
"test": "nyc mocha"
},
"author": "tmtek",
"license": "MIT",
"dependencies": {},
"keywords": [
"DialogFlow",
"fulfillment",
"Google Assistant"
],
"eslintConfig": {
"extends": "eslint-config-synacor",
"rules": {
"no-console": 0
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/tmtek/convo.git"
},
"bugs": {
"url": "https://github.com/tmtek/convo/issues"
},
"homepage": "https://github.com/tmtek/convo#readme",
"devDependencies": {
"eslint": "^5.7.0",
"eslint-config-synacor": "^3.0.3",
"mocha": "^5.2.0",
"nyc": "^13.1.0"
},
"nyc": {
"exclude": [],
"include": [
"test/*.js"
]
}
}