uuid-stream
Version:
A Transform stream that generates RFC-compliant UUID v5.
44 lines (43 loc) • 1.17 kB
JSON
{
"name": "uuid-stream",
"version": "2.2.0",
"author": "Dan Lynch <pyramation@gmail.com>",
"description": "A Transform stream that generates RFC-compliant UUID v5.",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"homepage": "https://github.com/launchql/launchql",
"license": "MIT",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/launchql/launchql"
},
"bugs": {
"url": "https://github.com/launchql/launchql/issues"
},
"scripts": {
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
"clean": "rimraf dist/**",
"prepare": "npm run build",
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
"build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
"lint": "eslint . --fix",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"stream",
"hash",
"crypto",
"uuidv5",
"uuid"
],
"dependencies": {
"uuid-hash": "^2.2.0"
},
"gitHead": "cbf678ed3d22055b7d972468ca7f822b2662e7d0"
}