-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.42 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.42 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
{
"name": "react-slack-webhook",
"version": "0.0.5",
"description": "📢 Send a message directly to a Slack channel from a React app",
"repository": "https://github.com/cmg8431/react-slack-webhook.git",
"author": "cmg8431 <cmg8431@gmail.com>",
"license": "MIT",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"notifications",
"slack",
"webhooks",
"alerts",
"reactjs",
"error-reporting"
],
"files": [
"dist/**/*"
],
"scripts": {
"prepare": "husky install",
"build": "tsup",
"format": "prettier \"src/**/*.ts\" --write",
"lint": "eslint \"src/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@slack/types": "^2.11.0",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.6.1",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"tsup": "^8.0.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}