This repository has been archived by the owner on Nov 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
104 lines (104 loc) · 2.55 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@tippyjs/react",
"version": "4.2.5",
"description": "React component for Tippy.js",
"main": "dist/tippy-react.umd.js",
"module": "dist/tippy-react.esm.js",
"unpkg": "dist/tippy-react.umd.min.js",
"types": "index.d.ts",
"sideEffects": false,
"scripts": {
"dev": "parcel demo/index.html -d .devserver --no-cache",
"build": "rollup --config",
"test": "jest --coverage",
"lint": "eslint \"{src,test}/**/*.js\"",
"format": "prettier --write \"{src,test,demo}/**/*.{js,ts,json,css,md}\""
},
"author": "atomiks",
"license": "MIT",
"keywords": [
"tooltip",
"popover",
"tippy",
"react"
],
"files": [
"dist/",
"headless/",
"index.d.ts"
],
"jest": {
"setupFilesAfterEnv": [
"<rootDir>test/setup.js",
"@testing-library/jest-dom/extend-expect"
],
"coveragePathIgnorePatterns": [
"test/setup.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,test,demo}/**/*.{js,ts,json,css,md}": [
"prettier --write",
"git add"
],
"{src,test}/**/*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"tippy.js": "^6.3.1"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.0.0",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@types/react": "^16.8.2",
"babel-eslint": "^10.0.1",
"babel-jest": "^25.1.0",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"core-js": "^3.6.4",
"eslint": "^5.14.1",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.7.0",
"framer-motion": "^1.10.3",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lint-staged": "^8.1.0",
"parcel": "^1.12.3",
"prettier": "^1.16.1",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-spring": "^8.0.27",
"rollup": "^1.14.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.2.0",
"styled-components": "^5.0.1",
"typescript": "^3.6.3"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atomiks/tippyjs-react.git"
},
"bugs": {
"url": "https://github.com/atomiks/tippyjs-react/issues"
},
"homepage": "https://github.com/atomiks/tippyjs-react#readme"
}