-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1 KB
/
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
{
"name": "dialogflow-fulfillment-utils",
"version": "1.0.0",
"description": "Utilities for working with Dialogflow fulfillment messages",
"main": "index.js",
"scripts": {
"test": "npm run lint && nyc --reporter=html --reporter=text mocha --require co-mocha ./**/*.spec.js",
"lint": "eslint src/*.js",
"test-watch": "mocha --watch --require co-mocha ./**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smalltalk-ai/dialogflow-fulfillment-utils.git"
},
"keywords": [
"dialogflow",
"api.ai"
],
"author": "Joshua Salwen <[email protected]> (https://www.smalltalk.agency)",
"license": "ISC",
"bugs": {
"url": "https://github.com/smalltalk-ai/dialogflow-fulfillment-utils/issues"
},
"homepage": "https://github.com/smalltalk-ai/dialogflow-fulfillment-utils#readme",
"devDependencies": {
"chai": "^4.2.0",
"co-mocha": "^1.2.2",
"eslint": "^6.3.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1"
},
"dependencies": {}
}