-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "ncov19-sms-bot-api",
"version": "1.0.0",
"description": "An SMS bot for easily getting the latest COVID-19 updates for your area with a provided zip code.",
"main": "index.js",
"jest": {
"verbose": true,
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"scripts": {
"test": "jest",
"server": "nodemon index.js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ncov19-us/ncov19-sms-bot-api.git"
},
"author": "ncov19us",
"license": "ISC",
"bugs": {
"url": "https://github.com/ncov19-us/ncov19-sms-bot-api/issues"
},
"homepage": "https://github.com/ncov19-us/ncov19-sms-bot-api#readme",
"dependencies": {
"axios": "^0.19.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^3.22.0",
"node-cache": "^5.1.0",
"twilio": "^3.42.1"
},
"devDependencies": {
"dotenv": "^8.2.0",
"jest": "^25.2.3",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
}
}