Topmarks/topmark-loadspeed

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "topmark-loadspeed",
  "version": "1.0.1",
  "description": "Topmarks plugin for checking page loadspeed",
  "main": "./lib/loadspeed.js",
  "scripts": {
    "prepublish": "npm run compile",
    "compile": "babel -d lib/ src/",
    "compile-watch": "babel --watch -d lib/ src/",
    "test": "mocha test",
    "test-watch": "multi='mocha-osx-reporter=- nyan=-' mocha --watch --reporter mocha-multi test/",
    "coverage": "nyc npm test",
    "codeclimate": "npm run coverage && nyc report --reporter=text-lcov | codeclimate-test-reporter",
    "lint": "eslint --ignore-path .gitignore ."
  },
  "keywords": [
    "topmarks-plugin",
    "loading",
    "performance",
    "browser"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Topmarks/topmark-loadspeed.git"
  },
  "bugs": {
    "url": "https://github.com/Topmarks/topmark-loadspeed/issues"
  },
  "nyc": {
    "include": [
      "src/*.js"
    ],
    "exclude": [
      "src/src/*.js"
    ],
    "require": [
      "babel-register"
    ]
  },
  "author": "Garth Braithwaite <garthdb@gmail.com> (http://garthdb.com)",
  "license": "Apache-2.0",
  "peerDependencies": {
    "topmarks": "1.x.x"
  },
  "devDependencies": {
    "babel-cli": "^6.10.1",
    "babel-core": "^6.10.4",
    "babel-plugin-add-module-exports": "^0.2.1",
    "babel-plugin-istanbul": "^1.0.3",
    "babel-preset-es2015": "^6.9.0",
    "chai": "^3.5.0",
    "codeclimate-test-reporter": "^0.3.3",
    "eslint": "^2.9.0",
    "eslint-config-airbnb": "^9.0.1",
    "eslint-plugin-import": "^1.12.0",
    "eslint-plugin-jsx-a11y": "^1.2.0",
    "eslint-plugin-react": "^5.2.2",
    "mocha": "^2.5.3",
    "nyc": "^7.1.0",
    "topmarks": "*"
  },
  "dependencies": {
    "chrome-helper": "^1.0.0"
  }
}