UNPKG

@browser-network/database

Version:

A type of distributed database built on top of the distributed browser-network

62 lines (61 loc) 1.81 kB
{ "name": "@browser-network/database", "version": "0.3.1", "description": "A type of distributed database built on top of the distributed browser-network", "main": "./dist/src/index.js", "types": "./dist/src/index.d.ts", "files": [ "dist/**/*", "umd/**/*" ], "scripts": { "test": "tap --ts --no-timeout --no-coverage test/*.ts", "clean": "shx rm -rf dist build umd; shx mkdir umd", "compile:ts": "tsc", "compile:pack": "browserify dist/src/index.js -o umd/db.js -s Db", "compile:pack:min": "uglifyjs umd/db.js --compress -o umd/db.min.js", "build": "npm run clean; npm-run-all compile:**", "build:watch": "nodemon -e ts,json -i dist -x 'npm run compile:ts && npm run compile:pack'", "start:dev": "node serve.js & npm run build:watch", "release": "npm run build && np --no-cleanup --no-tests --no-yarn --message=\"New release! Version: %s\"" }, "repository": { "type": "git", "url": "git@github.com:browser-network/database.git" }, "publishConfig": { "access": "public" }, "author": "Aaron Sullivan (aasullivan1618@gmail.com)", "homepage": "https://github.com/browser-network/database#readme", "keywords": [ "distributed", "browser", "network", "decentralized", "peer", "p2p", "webrtc", "crypto", "cryptographic" ], "license": "MIT", "dependencies": { "@browser-network/crypto": "^0.0.3", "@browser-network/network": "^0.3.3" }, "devDependencies": { "@types/node": "^16", "@types/tap": "^15.0.7", "browserify": "^17.0.0", "nodemon": "^2.0.15", "np": "^7.6.0", "npm-run-all": "^4.1.5", "shx": "^0.3.4", "tap": "^16.1.0", "tap-spec": "^5.0.0", "ts-node": "^10.7.0", "typescript": "^4.4.4", "uglify-js": "^3.15.3" } }