UNPKG

wickr-bedrock-bot

Version:

AWS Wickr's own Bedrock Bot

127 lines 4.45 kB
{ "name": "zeromq", "version": "6.0.4", "description": "Next-generation ZeroMQ bindings for Node.js", "main": "lib/index.js", "type": "commonjs", "types": "lib/index.d.ts", "typesVersions": { "<=3.7": { "lib/*": [ "lib/ts3.7/*" ] } }, "gypfile": true, "repository": { "type": "git", "url": "https://github.com/zeromq/zeromq.js.git" }, "homepage": "http://zeromq.github.io/zeromq.js/", "dependencies": { "@aminya/node-gyp-build": "4.8.1-aminya.1", "node-addon-api": "^7.1.0", "shelljs": "^0.8.5", "cross-env": "^7.0.3", "node-gyp": "^10.2.0" }, "devDependencies": { "@types/chai": "^4.3.16", "@types/fs-extra": "^11.0.4", "@types/mocha": "^10.0.6", "@types/node": "^20.14.3", "@types/proper-lockfile": "^4.1.4", "@types/semver": "^7.5.8", "@types/shelljs": "^0.8.15", "@types/which": "^3.0.4", "benchmark": "^2.1.4", "chai": "^4.4.1", "deasync": "^0.1.30", "downlevel-dts": "^0.11.0", "electron-mocha": "^12.3.0", "eslint": "^8", "eslint-config-atomic": "^1.22.0", "eslint-plugin-prettier": "^5.1.3", "execa": "^9.2.0", "fs-extra": "^11.2.0", "gh-pages": "^6.1.1", "minify-all-cli": "^1.0.13", "mocha": "^10.4.0", "npm-run-all2": "^6.2.0", "prebuildify": "^6.0.1", "prettier": "^3.3.2", "proper-lockfile": "^4.1.2", "semver": "^7.6.2", "ts-node": "~10.9.2", "typedoc": "^0.25.13", "typescript": "~4.9.5", "which": "^4.0.0", "shx": "^0.3.4" }, "engines": { "node": ">= 10.2", "pnpm": ">= 9" }, "files": [ "CHANGELOG.md", "LICENSE", "README.md", "binding.gyp", "*.d.ts", "*.js", "lib", "src", "script", "prebuilds", "tsconfig.json" ], "keywords": [ "zeromq", "zmq", "0mq", "ømq", "libzmq", "zmtp", "message", "messaging", "queue", "async", "sockets", "native", "binding", "addon", "napi" ], "license": "MIT AND MPL-2.0", "author": "Amin Yahyaabadi <aminyahyaabadi74@gmail.com>, Rolf Timmermans <rolf@zxcv.nl>", "scripts": { "install": "cross-env npm_config_build_from_source=true aminya-node-gyp-build", "clean": "shx rm -rf ./build ./prebuilds && run-p clean.lib clean.script clean.temp", "clean.lib": "shx rm -rf ./lib/", "clean.script": "shx rm -rf ./script/*.js ./script/*.mjs ./script/*.js.map ./script/*.mjs.map ./script/*.d.ts ./script/*.d.mts ./script/*.cjs ./scripts/*.cjs.map ./scripts/*.d.cts ./script/*.tsbuildinfo", "clean.release": "shx rm -rf ./build/Release", "clean.temp": "shx rm -rf ./tmp && shx mkdir -p ./tmp", "build.library": "run-s clean.lib && tsc -p ./src/tsconfig.json && run-s build.downlevel", "build.downlevel": "downlevel-dts ./lib ./lib/ts3.7", "build.script": "tsc -p ./script/tsconfig.esm.json && tsc -p ./script/tsconfig.json", "build.js": "run-p build.script build.library", "build.doc": "typedoc --options ./typedoc.json && minify-all -s docs-unminified -d docs --jsCompressor terser && shx rm -rf docs-unminified", "deploy.doc": "run-s build.doc && gh-pages --dist \"./docs\"", "build.prebuild": "run-s build.js && node ./script/prebuild.mjs", "build.native": "node-gyp configure --release && node-gyp configure --release -- -f compile_commands_json && node-gyp build --release", "build.native.debug": "node-gyp configure --debug && node-gyp configure --debug -- -f compile_commands_json && cross-env CMAKE_BUILD_TYPE=Debug node-gyp build --debug", "build": "run-s build.js build.native", "build.debug": "run-s build.js build.native.debug", "test": "run-s clean.temp build && mocha", "test.skip_gc_tests": "run-s clean.temp build.debug && cross-env SKIP_GC_TESTS=true mocha", "test.electron.main": "run-s clean.temp build && electron-mocha", "format": "prettier --write .", "test.electron.renderer": "run-s build && electron-mocha --renderer", "lint.clang-format": "clang-format -i -style=file ./src/*.cc ./src/*.h ./src/util/*.h", "lint-test.eslint": "eslint ./**/*.{ts,tsx,js,jsx,cjs,mjs,json,yaml} --no-error-on-unmatched-pattern --cache --cache-location ./.cache/eslint/", "lint.eslint": "pnpm run lint-test.eslint --fix", "lint": "run-p lint.eslint lint.clang-format", "lint-test": "run-s lint-test.eslint", "bench": "node --expose-gc test/bench" } }