{
    "name": "copy-partial-json",
    "version": "1.1.4",
    "description": "A simple script to copy portions of a json document from one file to another",
    "bin": {
        "copy-partial-json": "dist/index.js"
    },
    "keywords": [
        "json",
        "copy",
        "typescript"
    ],
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "scripts": {
        "clean": "rimraf dist",
        "build": "tsc -p tsconfig.build.json",
        "watch-build": "tsc --watch -p tsconfig.build.json",
        "lint": "eslint . --ext .ts,.d.ts,.js",
        "test": "jest --ci --coverage && tsc --noemit",
        "watch-test": "jest --watch",
        "prebuild-release": "npm run clean",
        "build-release": "concurrently --kill-others-on-fail npm:test npm:lint npm:build && write-markdown -f package.json -p markdownConfig -v",
        "prepack": "npm run build-release",
        "prewrite-markdown": "npm run build",
        "preverify-markdown": "npm run build",
        "write-markdown": "write-markdown -f package.json -p markdownConfig",
        "verify-markdown": "write-markdown -f package.json -p markdownConfig -v",
        "preversion": "npm run build-release",
        "version": "node dist -g -t sampleTarget.json -k version name",
        "lint:fix": "eslint . --ext .ts,.d.ts,.js --fix",
        "prepublishOnly": "npm run build-release"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/Roaders/copy-partial-json.git"
    },
    "author": "",
    "license": "ISC",
    "bugs": {
        "url": "https://github.com/Roaders/copy-partial-json/issues"
    },
    "homepage": "https://github.com/Roaders/copy-partial-json#readme",
    "dependencies": {
        "ts-command-line-args": "^1.5.0"
    },
    "devDependencies": {
        "@morgan-stanley/ts-mocking-bird": "^0.2.3",
        "@types/jest": "^26.0.15",
        "@typescript-eslint/eslint-plugin": "^5.17.0",
        "@typescript-eslint/parser": "^5.17.0",
        "concurrently": "^5.3.0",
        "eslint": "^8.12.0",
        "eslint-config-prettier": "^8.5.0",
        "eslint-plugin-import": "^2.25.4",
        "eslint-plugin-node": "^11.1.0",
        "eslint-plugin-prettier": "^4.0.0",
        "eslint-plugin-promise": "^6.0.0",
        "eslint-plugin-standard": "^4.0.2",
        "jest": "^26.6.1",
        "prettier": "^2.6.1",
        "rimraf": "^3.0.2",
        "ts-jest": "^26.4.3",
        "typescript": "^4.0.5"
    },
    "markdownConfig": {
        "markdownPath": "README.MD",
        "jsFile": "dist/write-markdown.constants.js",
        "verifyMessage": "'{fileName}' is out of date. Please regenerate by running 'npm run write-markdown'"
    }
}
