-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 972 Bytes
/
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
{
"name": "slack-testing-library",
"version": "1.3.3",
"description": "A mock server and library for testing interactive Slack apps",
"repository": "git://github.com/chrishutchinson/slack-testing-library.git",
"main": "dist/slack-testing-library.js",
"types": "dist/slack-testing-library.d.ts",
"files": [
"dist",
"package.json",
"README.md"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "Chris Hutchinson <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "tsc",
"release": "release-it"
},
"devDependencies": {
"@release-it/conventional-changelog": "^3.3.0",
"@types/jest": "^27.0.1",
"jest": "^27.1.0",
"release-it": "^14.11.5",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
},
"dependencies": {
"@slack/types": "^2.2.0",
"@slack/web-api": "^6.4.0",
"cross-fetch": "^3.1.4",
"query-string": "^7.0.1"
}
}