-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 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
{
"name": "zoom-slack-status-updater",
"version": "0.2.0",
"description": "Update your Slack status automatically when you join a Zoom meeting.",
"private": true,
"main": "./src/index.js",
"scripts": {
"coverage": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"postinstall": "node scripts/copyfile.js",
"start": "node .",
"test": "jest",
"watch": "nodemon ./src/index.js",
"watch-test": "jest --watch"
},
"keywords": [
"zoom",
"slack",
"slack status"
],
"author": "Stefan Natter (https://natterstefan.me)",
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash.get": "^4.4.2",
"qs": "^6.9.4"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"all-contributors-cli": "^6.16.0",
"coveralls": "^3.1.0",
"jest": "^26.1.0",
"moxios": "^0.4.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"supertest": "^4.0.2"
}
}