UNPKG

mcard-js

Version:

A JavaScript implementation of MCard - A data model for persistently storing content with cryptographic hashing and timestamping

75 lines (74 loc) 1.78 kB
{ "name": "mcard-js", "version": "1.0.1", "description": "A JavaScript implementation of MCard - A data model for persistently storing content with cryptographic hashing and timestamping", "main": "src/index.js", "type": "module", "scripts": { "test": "jest", "prepare": "npm run build", "build": "babel src --out-dir dist --source-maps", "test:ci": "jest --testPathIgnorePatterns=redux-mcard-persistence.test.js", "prepublishOnly": "npm run test:ci && npm run build" }, "keywords": [ "mcard", "data-model", "cryptography", "hashing", "timestamping", "persistence", "storage" ], "author": "Ben Koo <benkoo@example.com> (https://github.com/benkoo)", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/benkoo/mcard_js.git" }, "bugs": { "url": "https://github.com/benkoo/mcard_js/issues" }, "homepage": "https://github.com/benkoo/mcard_js#readme", "files": [ "dist", "src", "README.md", "LICENSE" ], "engines": { "node": ">=14.0.0" }, "dependencies": { "buffer": "^6.0.3", "crypto": "^1.0.1" }, "devDependencies": { "@babel/cli": "^7.27.2", "@babel/core": "^7.27.1", "@babel/plugin-transform-modules-commonjs": "^7.27.1", "@babel/plugin-transform-runtime": "^7.27.1", "@babel/preset-env": "^7.27.2", "@babel/register": "^7.27.1", "@babel/runtime": "^7.27.1", "babel-jest": "^29.7.0", "better-sqlite3": "^11.10.0", "jest": "^29.7.0", "sqlite3": "^5.1.7" }, "babel": { "presets": [ [ "@babel/preset-env", { "targets": { "node": "current" } } ] ] }, "publishConfig": { "access": "public" } }