{
  "name": "coiot-coap",
  "version": "1.0.0",
  "description": "Minimalistic client and server for CoIoT protocol",
  "author": "Javier Mendiara Cañardo <jmendiara@gmail.com>",
  "license": "Apache-2.0",
  "scripts": {
    "start": "node dist/index.js",
    "clean": "rm -fR lib && rm -fR *.tsbuildinfo",
    "prebuild": "npm run clean",
    "build": "tsc -p tsconfig.json",
    "prewatch": "npm run clean",
    "watch": "tsc -w -p tsconfig.json",
    "lint": "eslint . --ext .ts",
    "test": "jest --coverage",
    "test:watch": "jest --watch",
    "format": "prettier --write '{src,__tests__}/**/*.{js,ts,md}'",
    "prepublishOnly": "npm run test && npm run build"
  },
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "lib",
    "src"
  ],
  "bin": {
    "coiot": "./bin/coiot"
  },
  "dependencies": {
    "coap": "^0.24.0",
    "commander": "^6.2.0"
  },
  "devDependencies": {
    "@types/bl": "^2.1.0",
    "@types/jest": "^26.0.19",
    "@types/node": "^14.14.2",
    "@typescript-eslint/eslint-plugin": "^4.9.1",
    "@typescript-eslint/parser": "^4.9.1",
    "eslint": "^7.15.0",
    "eslint-config-prettier": "^7.0.0",
    "eslint-plugin-jest": "^24.1.3",
    "jest": "^26.6.3",
    "prettier": "^2.1.2",
    "ts-jest": "^26.4.4",
    "tsutils": "^3.17.0",
    "typescript": "^4.1.2"
  }
}
