-
Notifications
You must be signed in to change notification settings - Fork 674
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.79 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.79 KB
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": "@slack/cli-hooks",
"version": "1.3.2",
"description": "Node implementation of the contract between the Slack CLI and Bolt for JavaScript",
"author": "Slack Technologies, LLC",
"license": "MIT",
"keywords": [
"cli",
"hooks",
"slack"
],
"type": "module",
"main": "src/get-hooks.js",
"files": [
"src/check-update.js",
"src/doctor.js",
"src/get-hooks.js",
"src/get-manifest.js",
"src/protocols.js",
"src/start.js"
],
"engines": {
"node": ">= 18",
"npm": ">= 8.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slackapi/node-slack-sdk.git"
},
"homepage": "https://docs.slack.dev/tools/node-slack-sdk/",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/slackapi/node-slack-sdk/issues"
},
"scripts": {
"build": "shx chmod +x src/*.js",
"prelint": "tsc --noemit --module es2022 --maxNodeModuleJsDepth 0 --project ./jsconfig.json",
"test": "npm run test:unit",
"test:node18": "bash -c 'node --test --test-reporter=spec src/*.test.js'",
"test:unit": "node --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=lcov.info --test-reporter=junit --test-reporter-destination=test-results.xml --test src/*.test.js"
},
"bin": {
"slack-cli-check-update": "src/check-update.js",
"slack-cli-doctor": "src/doctor.js",
"slack-cli-get-hooks": "src/get-hooks.js",
"slack-cli-get-manifest": "src/get-manifest.js",
"slack-cli-start": "src/start.js"
},
"dependencies": {
"minimist": "^1.2.8",
"semver": "^7.5.4"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/semver": "^7.5.6",
"@types/sinon": "^21.0.0",
"sinon": "^21.0.0"
}
}