{
    "name": "@a2r/telemetry",
    "version": "1.1.3",
    "description": "Telemetry library for the A2R Framework",
    "main": "./index.js",
    "types": "./index.d.ts",
    "engines": {
        "node": ">=12"
    },
    "scripts": {
        "build": "rm -rf ./dist;tsc",
        "dev": "NODE_ENV=development ts-node ./index.ts",
        "upload": "npm run build;cd dist;npm i;npm publish --access=public;",
        "docker-build": "IMAGE=$npm_package_name:latest;docker build --rm --pull -f \"./Dockerfile\" -t $IMAGE \".\"",
        "docker-start": "IMAGE=$npm_package_name:latest;docker run -it -v $INIT_CWD/server:/usr/src/app/server $IMAGE",
        "start": "node ./dist/index.js",
        "lint": "npx eslint --config ./.eslintrc ./**/*.ts",
        "test": "jest",
        "test-clear": "rm -rf coverage;rm -rf dist;rm -rf log;rm -rf docs",
        "test-dev": "NODE_ENV=development npx jest --watch",
        "test-coverage": "jest --coverage",
        "test-coverage-dev": "NODE_ENV=development jest --coverage --watchAll",
        "coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
        "test-full": "npm run test-clear;npm run build;npm run test;npm run test-coverage;npm run lint;npm audit"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/acttoreact/telemetry.git"
    },
    "keywords": [
        "telemetry",
        "acttoreact",
        "a2r",
        "log"
    ],
    "author": "Act to React (https://a2r.com/)",
    "license": "MIT",
    "homepage": "https://a2r.com/",
    "dependencies": {
        "@typescript-eslint/eslint-plugin": "^4.32.0",
        "@typescript-eslint/parser": "^4.32.0",
        "acorn": "^8.5.0",
        "babel-jest": "^27.2.4",
        "chalk": "^4.1.2",
        "coveralls": "^3.1.1",
        "eslint": "^7.32.0",
        "eslint-config-airbnb": "^18.2.1",
        "eslint-config-prettier": "^8.3.0",
        "eslint-plugin-import": "^2.24.2",
        "eslint-plugin-jsx-a11y": "^6.4.1",
        "eslint-plugin-react": "^7.26.1",
        "jest": "^27.2.4",
        "ts-jest": "^27.0.5",
        "ts-node": "^10.2.1",
        "typescript": "^4.4.3",
        "winston": "^3.3.3"
    },
    "devDependencies": {
        "@types/jest": "^27.0.2",
        "@types/node": "^16.10.2"
    }
}
