nosqlax
Version:
NoSQLax is a lightweight JavaScript library designed to simplify and streamline CRUD operations with CouchDB. NoSQLax provides a unified and intuitive repository pattern to handle your data effortlessly.
48 lines (47 loc) • 1.1 kB
JSON
{
"name": "nosqlax",
"version": "1.0.3",
"description": "NoSQLax is a lightweight JavaScript library designed to simplify and streamline CRUD operations with CouchDB. NoSQLax provides a unified and intuitive repository pattern to handle your data effortlessly.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/*"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "node_modules/jest-cli/bin/jest.js",
"build": "tsc",
"watch": "tsc --watch"
},
"keywords": [
"couchdb",
"orm",
"nano",
"repository-pattern",
"schema",
"ajv",
"couchdb-helper"
],
"author": "Gregory Bliault",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gregblt/NoSQLax"
},
"dependencies": {
"ajv": "^8.17.1",
"nano": "^10.1.4"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@types/node": "^22.8.7",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-junit": "^16.0.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}