forked from ryanseddon/react-frame-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.55 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "react-frame-component",
"version": "1.0.2",
"description": "React component to wrap your application or component in an iFrame for encapsulation purposes",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"test": "npm-run-all --parallel lint karma:once --sequential build",
"serve": "webpack-dev-server --host 0.0.0.0 --hot --inline --history-api-fallback",
"start": "npm-run-all --parallel karma:dev serve",
"karma:once": "karma start --single-run",
"karma:dev": "karma start --browsers Chrome,Electron",
"babel": "babel src -d lib",
"build": "npm-run-all clean babel",
"lint": "eslint '*.js' '{src,test}/**/*.js*'",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/ryanseddon/react-frame-component.git"
},
"keywords": [
"React",
"component",
"iFrame",
"browser"
],
"author": "Ryan Seddon",
"contributors": [
"Chris Trevino <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ryanseddon/react-frame-component/issues"
},
"homepage": "https://github.com/ryanseddon/react-frame-component",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"electron": "^1.4.14",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"html-webpack-plugin": "^2.28.0",
"karma": "^1.4.0",
"karma-chrome-launcher": "^2.0.0",
"karma-electron": "^5.1.1",
"karma-mocha": "^1.3.0",
"karma-osx-reporter": "^0.2.1",
"karma-phantomjs-launcher": "^1.0.2",
"karma-phantomjs2-launcher": "^0.5.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"mocha": "^3.2.0",
"mocha-junit-reporter": "^1.13.0",
"mocha-multi": "^0.10.0",
"mocha-osx-reporter": "^0.1.2",
"npm-run-all": "^4.0.1",
"react": "^15.0.1",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^15.0.1",
"rimraf": "^2.5.4",
"sinon": "2.0.0-pre",
"wallaby-webpack": "^0.0.30",
"webpack": "1.x",
"webpack-dev-server": "^1.16.3"
},
"dependencies": {},
"peerDependencies": {
"react": "^15.0.1",
"react-dom": "^15.0.1"
}
}