-
Notifications
You must be signed in to change notification settings - Fork 141
/
package.json
74 lines (74 loc) · 2.33 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
65
66
67
68
69
70
71
72
73
74
{
"name": "lookerbot",
"version": "0.0.16",
"description": "Lookerbot",
"main": "index.js",
"scripts": {
"start": "./node_modules/.bin/ts-node ./src/index.ts",
"dev": "./node_modules/.bin/nodemon --exec ./node_modules/.bin/ts-node --type-check --no-cache -- ./src/index.ts",
"test": "yarn test-ts && ./node_modules/.bin/tsc --noEmit && yarn lint",
"test-ts": "./node_modules/.bin/mocha -r ./node_modules/ts-node/register test/**/test.ts",
"lint": "tsc --noEmit && tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'",
"lint-fix": "tsc --noEmit && tslint --fix -c tslint.json 'src/**/*.ts' 'test/**/*.ts'"
},
"author": {
"name": "Looker",
"email": "opensource+lookerbot@looker.com",
"url": "https://looker.com/"
},
"dependencies": {
"@google-cloud/storage": "^5.3.0",
"@slack/web-api": "^6.0.0",
"@types/dotenv": "^4.0.0",
"@types/express": "^4.0.35",
"@types/form-data": "^2.5.0",
"@types/node": "^13.11.0",
"@types/request": "^0.0.45",
"@types/request-promise-native": "^1.0.5",
"@types/semver": "^5.3.31",
"@types/stream-buffers": "^3.0.2",
"@types/underscore": "^1.8.0",
"@types/uuid": "^2.0.29",
"aws-sdk": "2.54.0",
"azure-storage": "2.10.3",
"botkit": "^0.7.6",
"chai": "^3.5.0",
"datauri": "^1.0.5",
"dotenv": "^4.0.0",
"form-data": "^3.0.0",
"fuzzysearch-js": "^0.2.0",
"get-urls": "^10.0.0",
"request": "https://github.com/request/request/archive/392db7d127536ff296fb06492db9430790a32d6c.tar.gz",
"semver": "^5.3.0",
"stream-buffers": "^3.0.1",
"ts-node": "^8.8.2",
"typescript": "^3.7.5",
"underscore": "^1.8.3",
"uuid": "^3.0.1"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/mocha": "^2.2.41",
"@types/sinon": "^5.0.0",
"@types/sinon-chai": "^2.7.29",
"@types/sinon-express-mock": "^1.3.7",
"mocha": "^6.2.3",
"nodemon": "^2.0.4",
"sinon": "^5.0.10",
"sinon-chai": "^3.1.0",
"sinon-express-mock": "^2.2.1",
"tslint": "^5.9.1"
},
"engines": {
"node": ">= 12.13.0",
"yarn": ">= 1.19.1"
},
"resolutions": {
"**/request": "https://github.com/request/request/archive/392db7d127536ff296fb06492db9430790a32d6c.tar.gz"
},
"repository": {
"type": "git",
"url": "https://github.com/looker/lookerbot"
},
"license": "MIT"
}