-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
51 lines (51 loc) · 1.5 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
{
"name": "react-iframe-comm",
"version": "1.2.2",
"description": "A React component for communicating between a parent window and an iframe.",
"main": "dist/IframeComm.js",
"author": "Petar Bojinov <[email protected]>",
"bugs": {
"url": "https://github.com/pbojinov/react-iframe-comm/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pbojinov/react-iframe-comm.git"
},
"keywords": [
"react",
"iframe",
"communication",
"comm",
"postMessage",
"react-component"
],
"license": "MIT",
"dependencies": {
"@kadira/storybook-deployer": "^1.2.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"prop-types": "^15.5.7"
},
"devDependencies": {
"@kadira/storybook": "^2.21.0",
"@kadira/storybook-addon-knobs": "^1.7.1",
"@kadira/storybook-addon-notes": "^1.0.1",
"@kadira/storybook-addon-options": "^1.0.2",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"react-scripts": "0.9.5"
},
"scripts": {
"start": "react-scripts start",
"/*--build--*/": "react-scripts build",
"build": " babel src/IframeComm.js --out-file dist/IframeComm.js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"deploy-storybook": "storybook-to-ghpages"
}
}