-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.16 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.16 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
{
"name": "react-expose",
"version": "0.1.1",
"description": "exposes react component children properties",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"prepublish": "mkdir -p dist && babel src/index.js -o dist/index.js && npm run browser-bundle",
"browser-bundle": "browserify src/browser.js -o dist/browser.js"
},
"repository": {
"type": "git",
"url": "Jephuff/react-expose"
},
"browserify": {
"transform": [
[
"babelify"
]
]
},
"keywords": [
"react",
"higher-order",
"components",
"utilities",
"composition",
"passthrough",
"bypass"
],
"author": "Jeffrey Burt",
"license": "ISC",
"peerDependencies": {
"react": "^15.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^19.0.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"enzyme": "^2.8.2",
"jest": "^19.0.2",
"react": "^15.0.1",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"sinon": "^2.1.0"
},
"dependencies": {}
}