-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
65 lines (65 loc) · 1.73 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
{
"name": "react-element-portal",
"version": "2.0.0-0",
"description": "Render a React component inline, but target a DOM element (or elements) by id or selector.",
"main": "lib/index.js",
"module": "src/index.js",
"scripts": {
"test": "ava test",
"start": "ava test --watch --fail-fast",
"prebuild": "rm -rf lib && mkdir -p lib",
"build": "babel src --out-dir lib",
"prepublish": "npm run build",
"patch-release": "npm version patch && npm publish && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zapier/react-element-portal.git"
},
"keywords": [
"react",
"element",
"portal",
"node",
"redux"
],
"author": "Justin Deal <justin.deal@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zapier/react-element-portal/issues"
},
"homepage": "https://github.com/zapier/react-element-portal#readme",
"devDependencies": {
"ava": "^0.22.0",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^8.0.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"browser-env": "^3.2.1",
"eslint": "^4.9.0",
"eslint-plugin-react": "^7.4.0",
"raf": "^3.4.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"redux": "^3.3.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register",
"raf/polyfill",
"./test/helpers/setup-browser-env.js"
]
},
"dependencies": {
"create-react-class": "^15.6.2",
"prop-types": "^15.6.0"
}
}