forked from klaviyo/react-frame-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.92 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "react-frame-component",
"version": "5.2.3",
"description": "React component to wrap your application or component in an iFrame for encapsulation purposes",
"main": "lib/index.js",
"files": [
"lib",
"index.d.ts"
],
"scripts": {
"precommit": "lint-staged",
"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",
"babel": "babel src -d lib",
"build": "npm-run-all clean babel",
"lint": "eslint '*.js' '{src,test}/**/*.js*'",
"prepublish": "npm run build",
"predeploy": "webpack",
"deploy": "gh-pages -d dist",
"publish": "npm run deploy"
},
"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",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"gh-pages": "^1.1.0",
"html-webpack-plugin": "^2.28.0",
"husky": "^0.14.3",
"karma": "^6.3.16",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-osx-reporter": "^0.2.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"lint-staged": "^7.1.3",
"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",
"prettier": "^1.13.4",
"prop-types": "^15.5.9",
"react": "^17.0.1",
"react-dom": "^17.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": {},
"lint-staged": {
"**/*.{js,jsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"peerDependencies": {
"prop-types": "^15.5.9",
"react": ">= 16.3",
"react-dom": ">= 16.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none"
}
}