fh1ch/node-bacstack

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "bacstack",
  "version": "0.0.1-beta.14",
  "description": "A BACnet protocol stack written in pure JavaScript.",
  "main": "index.js",
  "scripts": {
    "changelog": "commitlint --from=origin/master",
    "lint": "eslint lib/ test/ index.js",
    "test": "jest --coverageDirectory reports/coverage-test test/unit/*.spec.js",
    "integration": "jest --coverageDirectory reports/coverage-integration test/integration/*.spec.js",
    "compliance": "jest --coverageDirectory reports/coverage-compliance test/compliance/*.spec.js",
    "docs": "jsdoc -d ./docs -t node_modules/docdash ./lib ./index.js ./README.md"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fh1ch/node-bacstack.git"
  },
  "keywords": [
    "bacnet",
    "bacstack",
    "building",
    "automation"
  ],
  "author": {
    "name": "Fabio Huser",
    "email": "fabio@fh1.ch"
  },
  "engines": {
    "node": ">= 12.0.0"
  },
  "jest": {
    "testEnvironment": "node",
    "collectCoverage": true,
    "coverageReporters": [
      "text-summary",
      "cobertura",
      "lcov"
    ],
    "collectCoverageFrom": [
      "lib/**/*.js"
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/fh1ch/node-bacstack/issues"
  },
  "homepage": "https://github.com/fh1ch/node-bacstack#readme",
  "dependencies": {
    "debug": "^4.3.1",
    "iconv-lite": "^0.6.3"
  },
  "devDependencies": {
    "@commitlint/cli": "^12.1.4",
    "@commitlint/config-conventional": "^12.1.4",
    "docdash": "^1.2.0",
    "eslint": "^7.29.0",
    "eslint-config-google": "^0.14.0",
    "jest": "^27.0.6",
    "jsdoc": "^3.6.7"
  }
}