{
  "name": "unix-dgram-socket",
  "version": "1.1.1",
  "description": "Unix datagram socket with abstract namespace support for local interprocess communication.",
  "keywords": [
    "ipc",
    "unix",
    "sock",
    "event",
    "dgram",
    "socket",
    "threads",
    "messages",
    "abstract",
    "unixsocket",
    "child_process"
  ],
  "homepage": "https://github.com/ulwanski/unix-dgram-socket",
  "license": "GPL-3.0",
  "author": "Marek Ulwański <marek@ulwanski.pl>",
  "main": "lib/UnixDgramSocket.js",
  "types": "lib/UnixDgramSocket.d.ts",
  "repository": {
    "type": "git",
    "url": "git@github.com:ulwanski/unix-dgram-socket.git"
  },
  "scripts": {
    "clean": "rm -Rf ./dist ./build ./coverage",
    "clean:all": "npm run clean && rm -Rf ./node_modules",
    "compile": "node-gyp rebuild",
    "transcompile": "./node_modules/typescript/bin/tsc --build --pretty ./tsconfig.json",
    "build": "npm run lint:fix && npm run clean && npm run compile && npm run transcompile && npm run package:prepare",
    "lint": "./node_modules/tslint/bin/tslint --format stylish --project tsconfig.json",
    "lint:code": "./node_modules/tslint/bin/tslint --format codeFrame --project tsconfig.json",
    "lint:fix": "./node_modules/tslint/bin/tslint --format stylish --project tsconfig.json --fix",
    "package:prepare": "cp -R *.md LICENSE ChangeLog .gitignore .eslintrc.js package.json *.gyp ./dist && mkdir -p ./dist/src && cp src/*.cc ./dist/src",
    "test": "npm run test:unit",
    "test:unit": "./node_modules/.bin/_mocha -r ts-node/register test/**/*.test.ts",
    "test:unit:coverage": "./node_modules/.bin/nyc --clean --temp-dir=./coverage/.nyc_output ./node_modules/.bin/_mocha -r ts-node/register test/**/*.test.ts",
    "test:audit": "npm audit"
  },
  "engines": {
    "node": ">=6.17.1"
  },
  "dependencies": {
    "nan": "^2.14.2"
  },
  "devDependencies": {
    "@types/chai": "^4.1.7",
    "@types/expect": "^1.20.4",
    "@types/mocha": "^5.2.6",
    "@types/node": "^11.9.3",
    "@types/rewire": "^2.5.28",
    "@types/sinon": "^7.0.6",
    "chai": "^4.2.0",
    "eslint": "^5.14.0",
    "eslint-plugin-security": "^1.4.0",
    "expect": "^24.1.0",
    "mocha": "^6.0.1",
    "node-gyp": "^8.1.0",
    "nyc": "^15.1.0",
    "rewire": "^4.0.1",
    "sinon": "^7.2.4",
    "ts-jest": "^26.1.0",
    "ts-node": "^8.0.2",
    "tslint": "^5.12.1",
    "typescript": "^3.3.3"
  },
  "nyc": {
    "extension": [
      ".ts",
      ".tsx"
    ],
    "exclude": [
      "**/*.d.ts",
      "src/example*.ts"
    ],
    "include": [
      "src/**"
    ],
    "reporter": [
      "lcov",
      "html",
      "text-summary"
    ],
    "all": true
  }
}
