springload/react-portal-popover

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "react-portal-popover",
  "version": "0.2.0",
  "description": "Popover for React using portals",
  "main": "lib/index.js",
  "scripts": {
    "start": "node server/index.js",
    "lint": "eslint ./src",
    "test": "mocha test/.setup.js test/**/*.spec.js",
    "test:coverage": "NODE_ENV=test nyc mocha test/.setup.js test/**/*.spec.js",
    "coverage": "NODE_ENV=test nyc report --reporter=text-lcov",
    "test:watch": "mocha --watch test/.setup.js test/**/*.spec.js",
    "pub": "npm run lint && npm test && ./node_modules/.bin/babel -d lib src/ && npm publish",
    "build": "npm run lint && npm test && webpack --config=webpack.config.prod.js --progress -p"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/springload/react-portal-popover.git"
  },
  "keywords": [
    "react",
    "popover",
    "portal"
  ],
  "author": "Josh Barr",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/springload/react-portal-popover/issues"
  },
  "homepage": "https://github.com/springload/react-portal-popover#readme",
  "devDependencies": {
    "babel-cli": "^6.11.4",
    "babel-core": "^6.13.2",
    "babel-loader": "^6.2.4",
    "babel-plugin-__coverage__": "^11.0.0",
    "babel-plugin-istanbul": "^2.0.0",
    "babel-preset-es2015": "^6.13.2",
    "babel-preset-react": "^6.11.1",
    "babel-register": "^6.11.6",
    "chai": "^3.5.0",
    "enzyme": "^2.4.1",
    "eslint": "^3.3.0",
    "eslint-config-airbnb": "^10.0.1",
    "eslint-plugin-import": "^1.13.0",
    "eslint-plugin-jsx-a11y": "^2.1.0",
    "eslint-plugin-react": "^6.0.0",
    "express": "^4.14.0",
    "istanbul": "^0.4.4",
    "jsdom": "^9.4.2",
    "mocha": "^3.0.2",
    "nyc": "^8.1.0",
    "react": "^15.4.1",
    "react-addons-test-utils": "^15.4.1",
    "react-dom": "^15.4.1",
    "sinon": "^1.17.5",
    "webpack": "^1.13.1",
    "webpack-dev-middleware": "^1.6.1",
    "webpack-hot-middleware": "^2.12.2"
  },
  "peerDependencies": {
    "react": "^15.3.0",
    "react-dom": "^15.3.0"
  },
  "dependencies": {
    "react-portal": "^3.0.0"
  },
  "nyc": {
    "sourceMap": false,
    "instrument": false,
    "include": [
      "src/**/*.js"
    ],
    "exclude": [
      "**/*.spec.js"
    ],
    "require": [
      "babel-register"
    ]
  }
}