All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
105 lines
2.9 KiB
JSON
105 lines
2.9 KiB
JSON
{
|
|
"name": "react-frame-component",
|
|
"version": "5.2.7",
|
|
"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 <darthtrevino@gmail.com>"
|
|
],
|
|
"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": "^3.9.16",
|
|
"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"
|
|
}
|
|
}
|