-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.19 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
{
"name": "twilio-watson-glue",
"version": "1.0.0",
"description": "This repository is intended to receive incoming webhook requests from Twilio via the IBM API Gateway then forward them into Watson.",
"main": "src/index.js",
"repository": "[email protected]:disaster-assist/twilio-watson-glue.git",
"author": "jakebillings <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "webpack",
"deploy:create": "yarn build && ibmcloud fn action create twilio-watson-glue dist/index.min.js --web true",
"deploy:update": "yarn build && ibmcloud fn action update twilio-watson-glue dist/index.min.js",
"deploy:delete": "ibmcloud fn action delete twilio-watson-glue",
"deploy:invoke": "ibmcloud fn action invoke twilio-watson-glue --blocking --result",
"deploy:upvoke": "yarn deploy:update && yarn deploy:invoke"
},
"dependencies": {
"@cloudant/cloudant": "^2.3.0",
"@google/maps": "^0.5.5",
"fakerator": "^0.3.0",
"twilio": "^3.19.2",
"underscore": "^1.9.1",
"watson-developer-cloud": "^3.10.0",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0"
}
}