Files
patch-db/client/package.json
2021-07-09 15:12:58 -06:00

26 lines
569 B
JSON

{
"name": "patch-db",
"version": "1.0.0",
"description": "observable db based on json-patch",
"author": "Start9 Labs, Inc",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register tests/**/*.test.ts"
},
"dependencies": {
"rxjs": "^6.6.3",
"sorted-btree": "^1.5.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^15.0.0",
"@types/uuid": "^8.3.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.0",
"typescript": "4.1.5"
}
}