forked from sunify/react-relative-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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
{
"name": "react-relative-portal",
"version": "1.3.1",
"description": "React component for place dropdowns outside overflow: hidden; elements",
"main": "dist/RelativePortal.js",
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"react",
"react-component",
"portal",
"react-portal"
],
"scripts": {
"build": "npm run clean && babel src/Portal.js > dist/Portal.js && babel src/RelativePortal.js > dist/RelativePortal.js",
"clean": "rm -Rf dist && mkdir dist",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartprogress/react-relative-portal.git"
},
"author": "Alex Lunyov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartprogress/react-relative-portal/issues"
},
"homepage": "https://github.com/smartprogress/react-relative-portal#readme",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.5.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.3",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2"
},
"dependencies": {
"debounce": "^1.0.0",
"exenv": "^1.2.1"
},
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
}
}