forked from react-component/notification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.93 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@cloudtower/rc-notification",
"version": "4.6.1",
"description": "notification ui component for react",
"engines": {
"node": ">=8.x"
},
"keywords": [
"react",
"react-component",
"react-notification",
"notification"
],
"homepage": "http://github.com/react-component/notification",
"maintainers": [
"yiminghe@gmail.com",
"skyking_H@hotmail.com",
"hust2012jiangkai@gmail.com"
],
"files": [
"assets/*.css",
"assets/*.less",
"es",
"lib"
],
"repository": {
"type": "git",
"url": "git@github.com:react-component/notification.git"
},
"bugs": {
"url": "http://github.com/react-component/notification/issues"
},
"license": "MIT",
"main": "lib/index",
"module": "es/index",
"typings": "es/index.d.ts",
"scripts": {
"start": "dumi dev",
"build": "dumi build",
"docs:deploy": "gh-pages -d .doc",
"compile": "father build && lessc assets/index.less assets/index.css",
"prepublishOnly": "npm run compile && np --yolo --no-publish",
"lint": "eslint src/ docs/examples/ --ext .tsx,.ts,.jsx,.js",
"test": "father test",
"now-build": "npm run build"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.1",
"@types/classnames": "^2.2.10",
"@types/enzyme": "^3.10.7",
"@types/jest": "^26.0.4",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"cross-env": "^7.0.0",
"dumi": "^1.1.7",
"enzyme": "^3.3.0",
"enzyme-to-json": "^3.4.0",
"eslint": "^7.8.1",
"father": "^2.13.2",
"gh-pages": "^3.1.0",
"less": "^3.10.3",
"np": "^6.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@babel/runtime": "^7.10.1",
"classnames": "2.x",
"rc-motion": "^2.2.0",
"rc-util": "^5.20.1"
}
}