-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 1.17 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
{
"name": "disaster-clustering",
"version": "1.0.0",
"description": "This repository contains a clustering algorithm that runs via a serverless IBM cloud function to detect disaster events from chatbot data. This was built for the Call for Code hackathon. Powered by RCOS and IBM.",
"main": "src/index.js",
"repository": "[email protected]:disaster-assist/disaster-clustering.git",
"author": "jakebillings <[email protected]>",
"license": "MIT",
"private": true,
"dependencies": {
"@cloudant/cloudant": "^2.3.0",
"jDBSCAN": "https://github.com/disaster-assist/jDBSCAN.git",
"underscore": "^1.9.1"
},
"scripts": {
"build": "webpack",
"deploy:create": "yarn build && ibmcloud fn action create disaster-clustering dist/index.min.js --web true",
"deploy:update": "yarn build && ibmcloud fn action update disaster-clustering dist/index.min.js",
"deploy:delete": "ibmcloud fn action delete disaster-clustering",
"deploy:invoke": "ibmcloud fn action invoke disaster-clustering --blocking --result",
"deploy:upvoke": "yarn deploy:update && yarn deploy:invoke"
},
"devDependencies": {
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0"
}
}