{
  "name": "bno055-imu-node",
  "version": "1.4.0",
  "description": "Interact with a BNO055 IMU from your Node.js app",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "test-changes": "echo 'Source will rebuild and retest on changes' && nodemon --config nodemon.test.json",
    "build": "rimraf dist && tsc -p src",
    "build-app": "(cd examples/app && rimraf dist && tsc -p src)",
    "test": "ts-node -P examples/tsconfig.json",
    "lint": "tslint -c ./tslint.json --project examples && tslint -c ./tslint.json --project src",
    "prepublishOnly": "npm run lint && npm run build",
    "sync": "npm run build && node sync",
    "sync-changes": "echo 'Changes will be pushed to remote device' && nodemon --config nodemon.sync.json"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/alexeden/bno055-imu-node.git"
  },
  "author": "Alex Eden",
  "license": "MITNFA",
  "keywords": [
    "iot",
    "raspberry",
    "raspberrypi",
    "sensor",
    "pi",
    "rpi",
    "beaglebone",
    "bno055",
    "imu",
    "i2c",
    "adafruit"
  ],
  "bugs": {
    "url": "https://github.com/alexeden/bno055-imu-node/issues"
  },
  "homepage": "https://github.com/alexeden/bno055-imu-node#readme",
  "devDependencies": {
    "@types/i2c-bus": "^5.1.0",
    "@types/node": "^13.9.2",
    "chalk": "^3.0.0",
    "nodemon": "^2.0.2",
    "rimraf": "^3.0.2",
    "rsync": "^0.6.1",
    "ts-node": "^8.7.0",
    "tslint": "^6.1.0",
    "typescript": "^3.8.3"
  },
  "dependencies": {
    "i2c-bus": "^5.1.0"
  }
}
