forked from atomiks/tippyjs-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.54 KB
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
{
"name": "@tippy.js/react",
"version": "1.1.1",
"description": "React component for Tippy.js",
"main": "dist/Tippy.js",
"module": "dist/esm/Tippy.js",
"types": "index.d.ts",
"scripts": {
"dev": "parcel test/dev/index.html -d .devserver --no-cache --open",
"build": "node build.js",
"test": "jest --coverage"
},
"author": "atomiks",
"license": "MIT",
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>test/setup.js",
"coveragePathIgnorePatterns": [
"test/setup.js"
]
},
"dependencies": {
"prop-types": "^15.6.2",
"tippy.js": "^3.2.0"
},
"peerDependencies": {
"react": ">=16.2",
"react-dom": ">=16.2"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"jest": "^23.5.0",
"parcel": "^1.10.3",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-testing-library": "^5.2.3",
"rollup": "^0.64.1",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-babel-minify": "^5.0.0",
"rollup-plugin-node-resolve": "^3.4.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atomiks/tippy.js-react.git"
},
"bugs": {
"url": "https://github.com/atomiks/tippy.js-react/issues"
},
"homepage": "https://github.com/atomiks/tippy.js-react#readme"
}