forked from romainberger/react-portal-tooltip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "react-portal-tooltip",
"version": "1.0.5",
"description": "Awesome React tooltips",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/romainberger/react-portal-tooltip"
},
"bugs": {
"url": "https://github.com/romainberger/react-portal-tooltip"
},
"homepage": "https://github.com/dailymotion/react-portal-tooltip",
"scripts": {
"start": "./node_modules/.bin/babel src --watch --out-dir lib",
"build": "./node_modules/.bin/babel src --out-dir lib",
"test": "mocha --compilers js:babel/register",
"prepublish": "rm -rf lib && npm run build"
},
"keywords": [
"react",
"reactjs",
"component",
"tooltip",
"portal"
],
"author": "Romain Berger <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": "^0.14.7",
"react-dom": "^0.14.7"
},
"dependencies": {
"is-client": "0.0.2",
"object-assign": "^4.0.1"
},
"devDependencies": {
"babel": "^5.8.21",
"mocha": "^2.3.3",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.3",
"react-dom": "^0.14.7"
}
}