-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
{
"name": "slack-bolt-aws",
"version": "1.1.3",
"description": "AWS integrations for Bolt JS",
"author": {
"name": "KOMIYA Atsushi",
"url": "https://github.com/komiya-atsushi"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/komiya-atsushi/slack-bolt-aws.git"
},
"bugs": {
"url": "https://github.com/komiya-atsushi/slack-bolt-aws/issues"
},
"scripts": {
"test:jest": "jest --verbose --coverage",
"test:attw": "npm --workspaces --if-present run test:attw",
"test": "npm run test:jest && npm run test:attw",
"lint": "gts lint",
"clean": "gts clean",
"fix": "gts fix",
"pretest:jest": "npm --workspaces --if-present run compile",
"pretest:attw": "npm --workspaces --if-present run build",
"posttest": "npm run lint"
},
"keywords": [],
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@types/jest": "^29.5.11",
"@types/node": "18.19.3",
"gts": "^5.2.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsup": "^8.3.0",
"typescript": "~5.2.0"
},
"engines": {
"node": ">=18"
},
"workspaces": [
"packages/bolt-s3",
"packages/example-bolt-s3",
"packages/bolt-dynamodb",
"packages/example-bolt-dynamodb",
"packages/common-installation-store"
],
"private": true
}