-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.39 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "cognicity-reports-twilio-whatsapp",
"version": "1.0.0",
"description": "Allows WhatsApp users to submit flood reports via chat bot. Part of the CogniCity platform, deployed for Urban Risk Map.",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"docs": "node_modules/.bin/esdoc",
"build": "rm -rf ./bin && ./node_modules/.bin/babel src -d bin",
"deploy-dev": "npm run build && serverless deploy -v -s dev",
"deploy": "npm run build && serverless deploy -v -s prod",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/urbanriskmap/cognicity-reports-twilio-whatsapp.git"
},
"keywords": [
"Twilio",
"WhatsApp",
"Reports"
],
"author": "Mayank Ojha",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/urbanriskmap/cognicity-reports-twilio-whatsapp/issues"
},
"homepage": "https://github.com/urbanriskmap/cognicity-reports-twilio-whatsapp#readme",
"dependencies": {
"@urbanriskmap/cognicity-bot-core": "^1.1.4",
"dotenv": "^6.0.0",
"querystring": "^0.2.0",
"twilio": "^3.22.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^5.0.1",
"babel-preset-env": "^1.7.0",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.6.1",
"eslint-config-google": "^0.10.0"
}
}