react-facebook-auth
Version:
A Component React for Facebook authentication
86 lines (85 loc) • 2.97 kB
JSON
{
"name": "react-facebook-auth",
"version": "1.4.0",
"description": "A Component React for Facebook authentication",
"author": "Ionut Milica <ionut.milica@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/ionutmilica/react-facebook-auth",
"repository": {
"type": "git",
"url": "https://github.com/ionutmilica/react-facebook-auth.git"
},
"bugs": {
"url": "https://github.com/ionutmilica/react-facebook-auth/issues"
},
"keywords": [
"react",
"reactjs",
"facebook-auth",
"react-facebook-auth",
"react-component",
"facebook-login",
"login",
"react-facebook-login"
],
"main": "./lib/index.js",
"module": "./es/index.js",
"jsnext:main": "./es/index.js",
"scripts": {
"build": "npm run build:lib && npm run build:es && npm run build:umd && npm run build:umd:min",
"build:lib": "babel src --out-dir lib --ignore __tests__",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --ignore __tests__",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js --output dist/react-facebook-auth.js --mode development --config config/webpack.config.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js --output dist/react-facebook-auth.min.js --mode production --config config/webpack.config.js",
"lint": "eslint src",
"test": "cross-env NODE_ENV=test jest --config config/jest.config.js",
"test:coverage": "npm run test -- --coverage",
"test:codecov": "cat ./coverage/lcov.info | ./node_modules/.bin/codecov",
"test:watch": "npm run test -- --watch --bail",
"prettier": "prettier --write --semi --single-quote --trailing-comma=all 'src/**/*.{js,jsx,json,css}'",
"clean": "rimraf dist lib es coverage"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^22.4.1",
"babel-loader": "^7.1.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"codecov": "^3.0.0",
"cross-env": "^5.1.3",
"eslint": "^4.1.1",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"jest": "^22.4.2",
"prettier": "^1.10.2",
"rimraf": "^2.6.2",
"webpack": "^4.0.0",
"webpack-cli": "^2.0.9",
"webpack-dev-server": "^3.0.0",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
]
}
}