aureooms/js-pubsub

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@aureooms/js-pubsub",
  "description": "Publish-subscribe data structures for JavaScript",
  "version": "1.0.0",
  "author": "Aurélien Ooms <aurelien.ooms@gmail.com>",
  "ava": {
    "require": [
      "babel-polyfill",
      "babel-register"
    ]
  },
  "babel": {
    "presets": [
      "latest"
    ],
    "env": {
      "development": {
        "sourceMaps": "inline"
      }
    }
  },
  "bugs": {
    "url": "https://github.com/make-github-pseudonymous-again/js-pubsub/issues"
  },
  "dependencies": {},
  "devDependencies": {
    "@aureooms/js-compare": "^1.4.5",
    "@aureooms/js-dict": "^0.1.4",
    "@aureooms/js-heapsort": "^9.0.0",
    "ava": "^0.19.1",
    "babel-cli": "^6.18.0",
    "babel-polyfill": "^6.16.0",
    "babel-preset-latest": "^6.16.0",
    "codeclimate-test-reporter": "^0.4.0",
    "coveralls": "^2.11.14",
    "esdoc": "^0.5.0",
    "nyc": "^11.0.1"
  },
  "homepage": "http://make-github-pseudonymous-again.github.io/js-pubsub",
  "keywords": [
    "javascript",
    "js",
    "pubsub"
  ],
  "license": "AGPL-3.0",
  "main": "lib/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/make-github-pseudonymous-again/js-pubsub.git"
  },
  "scripts": {
    "build": "babel src -d lib",
    "cover": "nyc --reporter=lcov npm test",
    "prepublish": "npm run build",
    "test": "ava ./test/src"
  }
}