-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
67 lines (67 loc) · 1.52 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
{
"name": "rc-animate",
"version": "3.0.0",
"description": "css-transition ui component for react",
"keywords": [
"react",
"react-component",
"react-animate",
"animate"
],
"files": [
"es",
"lib"
],
"homepage": "https://github.com/react-component/animate",
"author": "",
"repository": {
"type": "git",
"url": "git@github.com:react-component/animate.git"
},
"bugs": {
"url": "http://github.com/react-component/animate/issues"
},
"license": "MIT",
"main": "./lib/Animate",
"module": "./es/Animate",
"config": {
"port": 8201
},
"scripts": {
"build": "rc-tools run build",
"gh-pages": "rc-tools run gh-pages",
"start": "rc-tools run server",
"pub": "rc-tools run pub",
"lint": "rc-tools run lint",
"karma": "rc-test run karma",
"saucelabs": "rc-test run saucelabs",
"test": "rc-test run test",
"chrome-test": "rc-test run chrome-test",
"coverage": "rc-test run coverage",
"prepublish": "rc-tools run guard",
"now-build": "npm run build"
},
"devDependencies": {
"core-js": "^2.5.1",
"expect.js": "0.3.x",
"jquery": "^3.3.1",
"pre-commit": "1.x",
"rc-test": "6.x",
"rc-tools": "8.x",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"velocity-animate": "~1.2.2"
},
"pre-commit": [
"lint"
],
"dependencies": {
"@ant-design/css-animation": "^1.7.2",
"classnames": "^2.2.6",
"rc-util": "^5.1.0"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
}
}