UNPKG

component-dbs-core

Version:

DTO objects shared among device backend

79 lines (78 loc) 1.93 kB
{ "name": "component-dbs-core", "version": "1.0.1", "description": "DTO objects shared among device backend", "compilerOptions": { "module": "commonjs", "declaration": false, "noImplicitAny": false, "noUnusedLocals": true, "removeComments": true, "noLib": false, "emitDecoratorMetadata": true, "experimentalDecorators": true, "target": "es6", "sourceMap": true, "allowJs": true, "outDir": "./dist" }, "include": [ "src/**/*" ], "exclude": [ "node_modules", "**/*.spec.ts" ], "scripts": { "prepublish": "tsc --build tsconfig.json", "build": "tsc --build tsconfig.json", "test": "jest --no-cache --detectOpenHandles", "lint": "yarn eslint src" }, "husky": { "hooks": { "pre-push": "yarn lint && yarn test" } }, "repository": { "type": "git", "url": "git+https://bitbucket.org/zeller-dev/component-dbs-core.git" }, "keywords": [ "dbs", "device backend core", "device", "backend", "service", "device backend" ], "author": "Zeller", "license": "ISC", "homepage": "https://bitbucket.org/npco_dev/component-dbs-core#readme", "devDependencies": { "@types/jest": "^26.0.0", "@types/node": "^13.7.7", "@types/uuid": "^8.0.0", "@typescript-eslint/eslint-plugin": "^3.3.0", "@typescript-eslint/parser": "^3.3.0", "eslint": "^7.2.0", "eslint-config-airbnb-typescript": "^8.0.2", "eslint-plugin-folders": "^1.0.3", "eslint-plugin-import": "^2.21.2", "eslint-plugin-unicorn": "^20.1.0", "husky": "^4.2.5", "jest": "^26.1.0", "jest-html-reporter": "^3.1.3", "jest-sonar-reporter": "^2.0.0", "ts-jest": "^26.1.1", "ts-mockito": "^2.6.1", "ts-node": "^8.10.1", "typescript": "^3.9.6", "uuid": "^8.1.0" }, "jestSonar": { "reportPath": "dist", "reportFile": "test-reporter.xml", "indent": 2 } }