rxstack/rxstack

View on GitHub
packages/configuration/package.json

Summary

Maintainability
Test Coverage
{
  "name": "@rxstack/configuration",
  "version": "0.6.1",
  "description": "RxStack Configuration Component",
  "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",
    "configuration"
  ],
  "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"
  },
  "dependencies": {
    "app-root-path": "^3.0.0",
    "lodash": "^4.17.21"
  },
  "devDependencies": {
    "@types/lodash": "^4.14",
    "@types/chai": "^4.3",
    "@types/mocha": "^9.1",
    "@types/node": "^14.14.35",
    "@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",
    "source-map-support": "^0.5.19",
    "ts-node": "^10.4",
    "tslint": "^6.1.3",
    "typescript": "^4.5"
  },
  "bugs": {
    "url": "https://github.com/rxstack/rxstack/issues"
  },
  "homepage": "https://github.com/rxstack/rxstack",
  "files": [
    "dist",
    "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"
    ]
  }
}