-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 2 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
45
46
47
{
"name": "wfh-bot",
"version": "1.0.0",
"description": "A slack bot which integrates with Google Calendar. Tell your teamates where you are with emojis!",
"main": "N/A",
"scripts": {
"offline": "STAGE=local && sls offline",
"test": "./node_modules/.bin/_mocha test/**/*.js -t 10000",
"test-unit": "./node_modules/.bin/_mocha test/unit/*.js -t 10000",
"test-integration": "./node_modules/.bin/_mocha test/integration/*.js -t 10000",
"test-controllers": "./node_modules/.bin/_mocha test/integration/controllers.integration.js -t 10000",
"test-calendar": "./node_modules/.bin/_mocha test/integration/calendar.integration.js -t 10000",
"test-handlers": "./node_modules/.bin/_mocha test/integration/handlers.integration.js -t 10000",
"test-slack": "./node_modules/.bin/_mocha test/integration/slack.integration.js -t 10000",
"test-aws": "./node_modules/.bin/_mocha test/unit/awsController.unit.js -t 10000",
"test-time": "./node_modules/.bin/_mocha test/unit/time.unit.js -t 10000",
"generate-google-token": "node local_util/generateGoogleToken.js",
"generate-tables": "node local_util/generateTables.js ",
"install-all-node-modules": "npm i && cd opt && npm i && cd ../handlers/wfhListener && npm i && cd ../postDailyWFHMessage && npm i",
"create-env-file": "node local_util/generateServerlessEnv.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/5t33/wfh-bot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/5t33/wfh-bot/issues"
},
"homepage": "https://github.com/5t33/wfh-bot#readme",
"dependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"env-yaml": "^0.1.2",
"mocha": "^6.2.0",
"moment-timezone": "^0.5.26",
"path": "^0.12.7",
"serverless": "^1.38.0",
"serverless-dynamodb-local": "^0.2.38",
"serverless-offline": "^5.10.1",
"serverless-pseudo-parameters": "^2.4.0",
"terminal-kit": "^1.31.2",
"yaml": "^1.6.0",
"yargs": "^14.0.0"
}
}