a2r-telemetry
Version:
Telemetry library for the A2R Framework
68 lines (67 loc) • 2.43 kB
JSON
{
"name": "a2r-telemetry",
"version": "1.0.1",
"description": "Telemetry library for the A2R Framework",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=12"
},
"scripts": {
"build": "rm -rf ./dist;tsc",
"dev": "NODE_ENV=development ts-node-dev --debug --respawn --transpileOnly ./index.ts",
"upload": "npm run build;npm publish;",
"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",
"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;npm run docs",
"docs": "jsdoc -c jsdoc.json"
},
"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": {
"chalk": "^4.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"typescript": "^3.5.3",
"@types/jest": "^25.1.1",
"@types/node": "^13.13.4",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"babel-jest": "^25.5.1",
"eslint": "^6.8.0",
"coveralls": "^3.0.11",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"jest": "^25.5.1",
"jsdoc": "^3.6.3",
"ts-jest": "^25.4.0",
"ts-node-dev": "^1.0.0-pre.40",
"better-docs": "^1.4.7"
}
}