-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.34 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
{
"name": "gcl-slack",
"version": "3.1.1",
"private": false,
"keywords": [
"google",
"app",
"cloud",
"logger",
"logging",
"stackdriver",
"cloud-run",
"run",
"pubsub",
"handler",
"fastify",
"fastify-plugin",
"cloud-functions"
],
"repository": "github:bjerkio/gcl-slack",
"license": "Apache-2.0",
"author": "Bjerk AS",
"main": "./dist/cjs/index.js",
"module": "./dist/index.js",
"source": "src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc && tsc -p tsconfig.cjs.json",
"format": "prettier --write src",
"lint": "eslint 'src/**/*.ts' --fix",
"test": "jest --coverage src"
},
"prettier": "@simenandre/prettier",
"dependencies": {
"@slack/web-api": "^6.7.2",
"fastify": "^4.13.0",
"pubsub-http-handler": "^6.0.0",
"runtypes": "^6.5.1",
"ts-invariant": "^0.10.3",
"undici": "^5.22.0"
},
"devDependencies": {
"@bjerk/eslint-config": "^5.4.0",
"@simenandre/prettier": "5.0.0",
"@slack-wrench/jest-mock-web-client": "^1.4.0",
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^29.0.0",
"eslint": "^8.2.0",
"jest": "^29.0.0",
"nock": "^13.3.0",
"prettier": "^3.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=16"
}
}