-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
{
"name": "react-portals",
"version": "1.1.3",
"author": "Andreas Roth <art_github@rtline.de>",
"bugs": {
"url": "https://github.com/andreasgruenh/react-portals/issues"
},
"dependencies": {
"prop-types": "^15.5.10",
"recompose": "^0.23.5"
},
"description":
"React library to send nodes into a node at a different place in the component tree.",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"jest": "^20.0.4",
"lodash": "^4.17.4",
"nodemon": "^1.11.0",
"react": "^15.6.1",
"rimraf": "^2.6.1"
},
"files": ["dist"],
"keywords": [
"react",
"portal",
"portals",
"modal",
"modals",
"popover",
"popovers"
],
"license": "MIT",
"main": "dist/index.js",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0"
},
"repository": {
"type": "git",
"url": "https://github.com/andreasgruenh/react-portals/"
},
"scripts": {
"build": "babel src --out-dir dist",
"clean": "rimraf dist",
"prepublish": "npm run clean && npm run build",
"test": "jest",
"watch": "nodemon --watch src --exec \"yarn run build\"",
"watch-tests": "jest --watch"
}
}