ErnestMazurin/object-diff-ast

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "object-diff-ast",
  "version": "0.10.1",
  "description": "Compares two objects and calculates the difference",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/ErnestMazurin/object-diff-ast"
  },
  "scripts": {
    "ts-node": "ts-node",
    "lint": "eslint . --ext .ts",
    "build": "tsc",
    "test": "jest",
    "start": "ts-node src/bin/getdiff.ts",
    "prepublishOnly": "yarn build"
  },
  "jest": {
    "preset": "ts-jest/presets/js-with-ts",
    "testEnvironment": "node",
    "collectCoverage": true
  },
  "bin": {
    "getdiff": "dist/bin/getdiff.js"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "object",
    "diff",
    "changes",
    "json",
    "ini",
    "yml",
    "config",
    "cli"
  ],
  "author": "ErnestMazurin",
  "license": "ISC",
  "dependencies": {
    "@types/ini": "^1.3.30",
    "@types/js-yaml": "^3.12.5",
    "commander": "^5.1.0",
    "ini": "^1.3.5",
    "js-yaml": "^3.14.0"
  },
  "devDependencies": {
    "@types/jest": "^26.0.4",
    "@types/node": "^14.0.23",
    "@typescript-eslint/eslint-plugin": "^3.6.1",
    "@typescript-eslint/parser": "^3.6.1",
    "eslint": "^7.4.0",
    "eslint-config-airbnb-base": "^14.2.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-import": "^2.22.0",
    "eslint-plugin-jest": "^23.18.0",
    "eslint-plugin-prettier": "^3.1.4",
    "jest": "^26.1.0",
    "prettier": "^2.0.5",
    "ts-jest": "^26.1.3",
    "ts-node": "^8.10.2",
    "typescript": "^3.9.7"
  }
}