-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.37 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.37 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
{
"name": "react-notification-core",
"version": "1.0.4",
"description": "Core notification functionality for React applications",
"repository": {
"type": "git",
"url": "git+https://github.com/benjtalkshow/react-notification-core.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src --ext .ts,.tsx",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"notifications",
"notification-system",
"typescript",
"hooks",
"react-notification-core",
"react-notification"
],
"author": "Nnaji Benjamin",
"license": "MIT",
"bugs": {
"url": "https://github.com/benjtalkshow/react-notification-core/issues"
},
"homepage": "https://github.com/benjtalkshow/react-notification-core#readme",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"jest": "^28.1.1",
"ts-jest": "^28.0.4",
"typescript": "^4.7.3"
}
}