1 | {
|
2 | "name": "rc-notification",
|
3 | "version": "5.6.2",
|
4 | "description": "notification ui component for react",
|
5 | "engines": {
|
6 | "node": ">=8.x"
|
7 | },
|
8 | "keywords": [
|
9 | "react",
|
10 | "react-component",
|
11 | "react-notification",
|
12 | "notification"
|
13 | ],
|
14 | "homepage": "http://github.com/react-component/notification",
|
15 | "maintainers": [
|
16 | "yiminghe@gmail.com",
|
17 | "skyking_H@hotmail.com",
|
18 | "hust2012jiangkai@gmail.com"
|
19 | ],
|
20 | "files": [
|
21 | "assets/*.css",
|
22 | "assets/*.less",
|
23 | "es",
|
24 | "lib"
|
25 | ],
|
26 | "repository": {
|
27 | "type": "git",
|
28 | "url": "git@github.com:react-component/notification.git"
|
29 | },
|
30 | "bugs": {
|
31 | "url": "http://github.com/react-component/notification/issues"
|
32 | },
|
33 | "license": "MIT",
|
34 | "main": "lib/index",
|
35 | "module": "es/index",
|
36 | "typings": "es/index.d.ts",
|
37 | "scripts": {
|
38 | "start": "dumi dev",
|
39 | "build": "dumi build",
|
40 | "docs:deploy": "gh-pages -d .doc",
|
41 | "compile": "father build && lessc assets/index.less assets/index.css",
|
42 | "prepublishOnly": "npm run compile && np --yolo --no-publish",
|
43 | "lint": "eslint src/ docs/examples/ --ext .tsx,.ts,.jsx,.js",
|
44 | "test": "vitest --watch=false",
|
45 | "test:watch": "vitest",
|
46 | "coverage": "vitest run --coverage",
|
47 | "now-build": "npm run build",
|
48 | "prepare": "husky install"
|
49 | },
|
50 | "peerDependencies": {
|
51 | "react": ">=16.9.0",
|
52 | "react-dom": ">=16.9.0"
|
53 | },
|
54 | "devDependencies": {
|
55 | "@rc-component/father-plugin": "^1.0.2",
|
56 | "@testing-library/jest-dom": "^6.0.0",
|
57 | "@testing-library/react": "^15.0.7",
|
58 | "@types/classnames": "^2.2.10",
|
59 | "@types/react": "^18.0.0",
|
60 | "@types/react-dom": "^18.0.0",
|
61 | "@types/testing-library__jest-dom": "^6.0.0",
|
62 | "@umijs/fabric": "^2.0.0",
|
63 | "@vitest/coverage-v8": "^0.34.2",
|
64 | "cross-env": "^7.0.0",
|
65 | "dumi": "^2.1.0",
|
66 | "eslint": "^7.8.1",
|
67 | "father": "^4.0.0",
|
68 | "gh-pages": "^3.1.0",
|
69 | "husky": "^8.0.3",
|
70 | "jsdom": "^24.0.0",
|
71 | "less": "^4.2.0",
|
72 | "lint-staged": "^14.0.1",
|
73 | "np": "^10.0.5",
|
74 | "prettier": "^3.0.2",
|
75 | "react": "^18.0.0",
|
76 | "react-dom": "^18.0.0",
|
77 | "typescript": "^5.4.5",
|
78 | "vitest": "^0.34.2"
|
79 | },
|
80 | "dependencies": {
|
81 | "@babel/runtime": "^7.10.1",
|
82 | "classnames": "2.x",
|
83 | "rc-motion": "^2.9.0",
|
84 | "rc-util": "^5.20.1"
|
85 | },
|
86 | "lint-staged": {
|
87 | "**/*.{js,jsx,tsx,ts,md,json}": [
|
88 | "prettier --write",
|
89 | "git add"
|
90 | ]
|
91 | }
|
92 | }
|