-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.05 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
{
"name": "react-hover-animation",
"version": "2.1.1",
"description": "A react wrapper component that detects hover and adds animation from the awesome react-spring.Works both on the web and mobile touch events.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w"
},
"author": "lulu70",
"repository": "lulu70/react-hover-animation",
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"js",
"react",
"react-component",
"javascript",
"animation",
"hover",
"react-hooks",
"mobile",
"touch"
],
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.6.0",
"rollup-plugin-typescript2": "^0.27.0",
"typescript": "^3.8.3"
},
"dependencies": {
"react-spring": "^8.0.27"
}
}