forked from lauravuo/harvestbot
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.86 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "harvestbot",
"version": "1.11.0",
"description": "Chatbot for providing hours info from Harvest.",
"main": "bin/index.js",
"scripts": {
"build": "rimraf build/ && babel ./src --out-dir build/ --ignore **/*.test.js",
"ci:automerge": "circleci-automerge --filter=\"^greenkeeper/\"",
"init:config": "npm run build && node ./build/init-config.js",
"start": "npm run build && node ./build/local.js",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint ./src --format codeframe",
"test:lint:fix": "eslint ./src --format codeframe --fix",
"test:unit": "jest ./src --coverage"
},
"jest": {
"testRegex": ".*\\.test\\.js$",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "https://github.com/NewThingsCo/harvestbot"
},
"keywords": [
"harvest",
"tracking",
"slack",
"chatbot"
],
"author": "NewThingsCo",
"license": "MIT",
"dependencies": {
"@babel/runtime": "7.10.2",
"@google-cloud/datastore": "6.0.0",
"@google-cloud/logging-winston": "3.0.6",
"@google-cloud/pubsub": "2.1.0",
"@google-cloud/storage": "5.0.1",
"@sendgrid/mail": "7.1.1",
"axios": "0.19.2",
"finnish-holidays-js": "^1.1.2",
"googleapis": "52.0.0",
"luxon": "^1.25.0",
"rxjs": "6.5.4",
"winston": "3.2.1",
"xlsx": "0.16.0"
},
"devDependencies": {
"@babel/cli": "7.10.1",
"@babel/core": "7.10.2",
"@babel/plugin-proposal-object-rest-spread": "7.10.1",
"@babel/plugin-transform-runtime": "7.10.1",
"@babel/preset-env": "7.10.2",
"babel-core": "7.0.0-bridge.0",
"circleci-automerge": "1.1.0",
"commander": "5.1.0",
"config": "3.3.1",
"dotenv": "^8.2.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-plugin-import": "2.20.2",
"jest": "25.1.0",
"rimraf": "3.0.2"
}
}