-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.73 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "nosqlax",
"version": "1.2.1",
"description": "NoSQLax is a modern, lightweight JavaScript Object Document Mapper(ODM) library that makes working with CouchDB a breeze. Inspired by CouchDB’s “Relax” philosophy and the chill vibes of Snorlax, NoSQLax takes the hassle out of managing your data, offering a streamlined and intuitive repository pattern to handle CRUD operations 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",
"data-mapper-basic-example": "node example/basic-example/data-mapper-basic-example.js",
"active-record-basic-example": "node example/basic-example/active-record-basic-example.js",
"custom-field-mapping-example": "node example/custom-field-mapping/custom-field-mapping-example.js",
"complex-schema-example": "node example/complex-schema/complex-schema-example.js"
},
"keywords": [
"couchdb",
"odm",
"orm",
"nano",
"repository-pattern",
"data-mapper-pattern",
"active-record-pattern",
"schema",
"ajv",
"couchdb-helper"
],
"author": "Gregory Bliault",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gregblt/NoSQLax"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.9.3",
"ajv": "^8.17.1",
"flatted": "^3.3.3",
"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"
}
}