-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.06 KB
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": "splink",
"version": "1.0.0",
"description": "A slackbot to manage cloud resources",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"test": "jest && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/desainis/splink.git"
},
"author": "Nishant Desai",
"license": "MIT",
"bugs": {
"url": "https://github.com/desainis/splink/issues"
},
"homepage": "https://github.com/desainis/splink#readme",
"dependencies": {
"@google-cloud/compute": "^1.1.5",
"@slack/events-api": "^2.3.0",
"@slack/interactive-messages": "^1.3.0",
"@slack/rtm-api": "^5.0.3",
"@slack/web-api": "^5.5.0",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"ejs": "^2.7.4",
"express": "^4.17.1",
"mongoose": "^5.7.12",
"nodemon": "^1.19.4",
"querystring": "^0.2.0",
"request": "^2.88.0"
},
"devDependencies": {
"codecov": "^3.6.1",
"jest": "^24.9.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}