-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.53 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
{
"name": "harvestbot",
"version": "1.0.0",
"description": "Chatbot for providing hours info from Harvest.",
"main": "build/index.js",
"scripts": {
"build": "rimraf build/ && babel ./src --out-dir build/ --copy-files --ignore *.test.js",
"ci:lock:update": "greenkeeper-lockfile-update",
"ci:lock:upload": "greenkeeper-lockfile-upload",
"start": "npm run build && node ./build/index.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/lauravuo/harvestbot"
},
"keywords": [
"harvest",
"tracking",
"slack",
"chatbot"
],
"author": "lauravuo",
"license": "MIT",
"dependencies": {
"@google-cloud/datastore": "^1.4.1",
"@google-cloud/logging-winston": "^0.9.0",
"@google-cloud/rcloadenv": "^0.2.1",
"axios": "^0.18.0",
"rxios": "^1.1.2",
"rxjs": "^5.5.10",
"winston": "^2.4.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"greenkeeper-lockfile": "^1.15.1",
"jest": "^22.4.4",
"rimraf": "^2.6.2"
}
}