mirror of https://codeberg.org/pzp/pzp-sync.git
62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"name": "ppppp-tangle-sync",
|
|
"version": "1.0.0",
|
|
"description": "PPPPP replication using Kleppmann's hash graph sync",
|
|
"author": "Andre Staltz <contact@staltz.com>",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/staltz/ppppp-tangle-sync",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:staltz/ppppp-tangle-sync.git"
|
|
},
|
|
"main": "index.js",
|
|
"files": [
|
|
"*.js",
|
|
"lib/*.js"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"require": "./lib/index.js"
|
|
}
|
|
},
|
|
"type": "commonjs",
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"dependencies": {
|
|
"bloom-filters": "^3.0.0",
|
|
"debug": "^4.3.4",
|
|
"multicb": "^1.2.2",
|
|
"pull-stream": "^3.7.0",
|
|
"push-stream": "^11.2.0",
|
|
"push-stream-to-pull-stream": "^1.0.5",
|
|
"ssb-network-errors": "^1.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"bs58": "^5.0.0",
|
|
"c8": "7",
|
|
"ppppp-db": "github:staltz/ppppp-db",
|
|
"ppppp-caps": "github:staltz/ppppp-caps",
|
|
"ppppp-keypair": "github:staltz/ppppp-keypair",
|
|
"prettier": "^2.6.2",
|
|
"pretty-quick": "^3.1.3",
|
|
"rimraf": "^4.4.0",
|
|
"secret-stack": "^6.4.1",
|
|
"secret-handshake-ext": "^0.0.7",
|
|
"ssb-box": "^1.0.1",
|
|
"tap-arc": "^0.3.5",
|
|
"tape": "^5.6.3"
|
|
},
|
|
"scripts": {
|
|
"test": "tape test/*.js | tap-arc --bail",
|
|
"format-code": "prettier --write \"(lib|test)/**/*.js\"",
|
|
"format-code-staged": "pretty-quick --staged --pattern \"(lib|test)/**/*.js\"",
|
|
"coverage": "c8 --reporter=lcov npm run test"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm run format-code-staged"
|
|
}
|
|
}
|
|
}
|