Files
patch-db/client/package.json
2022-07-24 17:53:24 +03:00

40 lines
856 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",
"check": "tsc --noEmit --skipLibCheck"
},
"dependencies": {
"sorted-btree": "1.5.0",
"uuid": "8.3.2"
},
"peerDependencies": {
"rxjs": ">=6.0.0"
},
"devDependencies": {
"@types/node": "16.4.13",
"@types/uuid": "8.3.1",
"husky": "^4.3.8",
"lint-staged": "^12.3.7",
"prettier": "^2.6.1",
"ts-node": "10.2.0",
"tslint": "6.1.3",
"typescript": "4.3.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run check"
}
},
"lint-staged": {
"**/*.{js,ts,html,md,less,json}": "prettier --write",
"*.ts": "tslint --fix"
}
}