-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 978 Bytes
/
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
{
"name": "fhz-tooltip",
"version": "2.0.1",
"description": "A React component for creating tooltips",
"main": "dist/index.js",
"module": "dist/index.es.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-lib": "rollup -c"
},
"keywords": [
"tooltip",
"react",
"ui component"
],
"repository": {
"type": "git",
"url": "https://github.com/MHDFahz/react-tooltip.git"
},
"homepage": "https://github.com/MHDFahz/react-tooltip",
"bugs": {
"url": "https://github.com/MHDFahz/react-tooltip/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/"
],
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"author": "fahis369",
"license": "MIT",
"devDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"dependencies": {
"prop-types": "^15.8.1"
}
}