{
  "name": "javascript-binary-converter",
  "version": "1.0.2",
  "description": "A utility package to quickly handle and convert various Javascript binary objects",
  "main": "build/cjs/index.js",
  "module": "build/esm/index.js",
  "umd:main": "build/umd/index.js",
  "scripts": {
    "test": "ts-mocha --timeout 100000 src/tests/node/**/*.spec.ts -w --watch-files '**/*.ts'",
    "test-binary": "ts-mocha --timeout 100000 src/tests/node/node-binary-converter.spec.ts -w --watch-files '**/*.ts'",
    "start": "tsc --watch -p config/tsconfig.cjs.json",
    "build": "npm run build:cjs && npm run build:esm && npm run build:umd",
    "build:cjs": "node cleanup cjs && tsc -p config/tsconfig.cjs.json",
    "build:esm": "node cleanup esm && tsc -p config/tsconfig.esm.json",
    "build:umd": "node cleanup umd && webpack --config config/webpack.config.js",
    "watch": "node cleanup umd && webpack --watch --config config/webpack.config.js",
    "prepare": "npm run build"
  },
  "author": "ibrod83",
  "license": "ISC",
  "keywords": [
    "javascript",
    "binary",
    "converter",
    "blob",
    "image",
    "typedArray",
    "arrayBuffer",
    "file",
    "utility"
  ],
  "devDependencies": {
    "@types/mocha": "^10.0.1",
    "expect": "^28.1.3",
    "lodash": "^4.17.21",
    "mocha": "^10.0.0",
    "nodemon": "^2.0.19",
    "ts-loader": "^9.3.1",
    "ts-mocha": "^10.0.0",
    "ts-node": "^10.8.2",
    "typescript": "^4.7.4",
    "webpack": "^5.74.0",
    "webpack-cli": "^4.10.0",
    "webpack-dev-server": "^4.9.3"
  },
  "homepage": "https://github.com/ibrod83/javascript-binary-converter",
  "bugs": {
    "url": "https://github.com/ibrod83/javascript-binary-converter/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ibrod83/javascript-binary-converter.git"
  }
}
