rxstack/rxstack

View on GitHub
packages/core/package.json

Summary

Maintainability
Test Coverage
{
  "name": "@rxstack/core",
  "version": "0.7.2",
  "description": "RxStackCore",
  "private": false,
  "author": "Nikolay Georgiev <symfonist@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/rxstack/rxstack.git"
  },
  "engines": {
    "node": ">=12"
  },
  "keywords": [
    "rxstack",
    "framework"
  ],
  "main": "dist/index",
  "typings": "dist/index",
  "scripts": {
    "prepublishOnly": "npm run compile",
    "compile": "npm run clean && tsc -p .",
    "clean": "rm -rf dist",
    "lint": "tslint --project tsconfig.json --format stylish",
    "eslint": "eslint src/**/*.ts",
    "mocha": "mocha --full-trace --bail test/**/*.spec.ts",
    "coverage": "nyc npm run mocha",
    "test": "npm run lint && npm run eslint && npm run coverage"
  },
  "peerDependencies": {
    "@rxstack/async-event-dispatcher": "^0.6",
    "@rxstack/exceptions": "^0.6",
    "winston": "^3.5.1"
  },
  "dependencies": {
    "injection-js": "^2.4.0",
    "lodash": "^4.17.21",
    "reflect-metadata": "^0.1.13",
    "table": "^6.8.0",
    "yargonaut": "^1.1.4",
    "yargs": "^17.3.1"
  },
  "devDependencies": {
    "@types/lodash": "^4.14.178",
    "@types/chai": "^4.3",
    "@types/mocha": "^9.1",
    "@types/node": "^14.14.35",
    "@types/sinon": "^10.0.9",
    "@typescript-eslint/eslint-plugin": "^5.10.1",
    "@typescript-eslint/parser": "^5.10.1",
    "chai": "^4.3",
    "eslint": "^8.8.0",
    "mocha": "^9.2.0",
    "nyc": "^15.1.0",
    "should": "^13.2.3",
    "sinon": "^13.0.1",
    "source-map-support": "^0.5.19",
    "ts-node": "^10.4",
    "tslint": "^6.1.3",
    "typescript": "^4.5",
    "std-mocks": "^1.0.1"
  },
  "bugs": {
    "url": "https://github.com/rxstack/rxstack/issues"
  },
  "homepage": "https://github.com/rxstack/rxstack",
  "files": [
    "dist",
    "docs",
    "README.md",
    "LICENSE"
  ],
  "nyc": {
    "extension": [
      ".ts"
    ],
    "reporter": [
      "text-summary",
      "html",
      "lcov"
    ],
    "sourceMap": true,
    "instrument": true
  },
  "mocha": {
    "require": [
      "ts-node/register",
      "source-map-support/register",
      "should"
    ]
  }
}