robojones/once

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "once-promise",
  "main": "build/index",
  "typings": "build/index",
  "description": "Promisify events.",
  "version": "2.0.0",
  "scripts": {
    "watch": "tsc --watch",
    "build": "tsc",
    "test-init": "mkdir -p reports",
    "lint": "yarn test-init && tslint --project . --format junit --out reports/tslint.xml",
    "test": "yarn test-init && nyc mocha 'build/test/**/*.js' --reporter mocha-junit-reporter"
  },
  "engines": {
    "node": ">=7.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/robojones/once.git"
  },
  "keywords": [
    "promise",
    "event",
    "events",
    "promises",
    "create",
    "promisify"
  ],
  "author": "robojones",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/robojones/once/issues"
  },
  "homepage": "https://github.com/robojones/once#readme",
  "devDependencies": {
    "@types/mocha": "^2.2.44",
    "mocha": "^4.0.1",
    "mocha-junit-reporter": "^1.18.0",
    "nyc": "^13.0.1",
    "tslint": "^5.8.0",
    "typescript": "^2.6.1"
  },
  "dependencies": {
    "@types/node": "^10.11.4",
    "tslint-config-ultra": "^2.1.0"
  },
  "nyc": {
    "extension": [
      ".ts"
    ],
    "reporter": [
      "lcov",
      "html",
      "text",
      "text-summary"
    ],
    "exclude": [
      "build/test"
    ]
  }
}