couchdb-web-node-plugin 1.0.642 → 1.0.643
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/databaseHelper.js +0 -0
- package/helper.js +0 -0
- package/index.js +0 -0
- package/package.json +29 -26
- package/test/databaseHelper.d.ts +1 -0
- package/test/helper.d.ts +1 -0
- package/test/index.d.ts +1 -0
- package/type.js +0 -0
package/databaseHelper.js
CHANGED
|
File without changes
|
package/helper.js
CHANGED
|
File without changes
|
package/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "couchdb-web-node-plugin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.643",
|
|
4
4
|
"description": "A couchdb server, model instance conflict handler, rest api, authentication, session management, schema validator and model relation guarantee for webNode.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"api",
|
|
@@ -57,33 +57,34 @@
|
|
|
57
57
|
"test": "weboptimizer test",
|
|
58
58
|
"test:coverage": "weboptimizer test:coverage",
|
|
59
59
|
"test:coverage:report": "weboptimizer test:coverage:report",
|
|
60
|
-
"update": "yarn version
|
|
60
|
+
"update": "yarn version patch && yarn npm publish",
|
|
61
61
|
"update:documentation": "documentation-website",
|
|
62
62
|
"watch": "weboptimizer build --watch"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"pouchdb-find": "
|
|
66
|
-
"pouchdb-node": "
|
|
67
|
-
"pouchdb-server": "
|
|
65
|
+
"pouchdb-find": "^8.0.1",
|
|
66
|
+
"pouchdb-node": "^8.0.1",
|
|
67
|
+
"pouchdb-server": "^4.2.0"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@babel/eslint-parser": "
|
|
71
|
-
"@
|
|
72
|
-
"@types/
|
|
73
|
-
"@types/
|
|
74
|
-
"@
|
|
75
|
-
"@typescript-eslint/
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"eslint
|
|
80
|
-
"eslint-
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
70
|
+
"@babel/eslint-parser": "^7.23.10",
|
|
71
|
+
"@babel/runtime": "^7.24.0",
|
|
72
|
+
"@types/ejs": "^3.1.5",
|
|
73
|
+
"@types/node": "^20.11.24",
|
|
74
|
+
"@types/pouchdb-node": "^6.1.7",
|
|
75
|
+
"@typescript-eslint/eslint-plugin": "^7.1.0",
|
|
76
|
+
"@typescript-eslint/parser": "^7.1.0",
|
|
77
|
+
"clientnode": "^3.0.1136",
|
|
78
|
+
"documentation-website": "^1.0.326",
|
|
79
|
+
"eslint": "^8.57.0",
|
|
80
|
+
"eslint-config-google": "^0.14.0",
|
|
81
|
+
"eslint-plugin-jsdoc": "^48.2.0",
|
|
82
|
+
"jest": "^29.7.0",
|
|
83
|
+
"jsdoc": "^4.0.2",
|
|
84
|
+
"node-fetch": "^3.3.2",
|
|
85
|
+
"rimraf": "^5.0.5",
|
|
86
|
+
"web-node": "^1.0.509",
|
|
87
|
+
"weboptimizer": "^2.0.1452"
|
|
87
88
|
},
|
|
88
89
|
"peerDependencies": {
|
|
89
90
|
"@babel/runtime": "*",
|
|
@@ -98,8 +99,9 @@
|
|
|
98
99
|
}
|
|
99
100
|
},
|
|
100
101
|
"engines": {
|
|
101
|
-
"node": ">=
|
|
102
|
-
"npm": ">=
|
|
102
|
+
"node": ">=20",
|
|
103
|
+
"npm": ">=10",
|
|
104
|
+
"yarn": ">=4"
|
|
103
105
|
},
|
|
104
106
|
"resolutions": {
|
|
105
107
|
"colors": "1.4.0"
|
|
@@ -512,5 +514,6 @@
|
|
|
512
514
|
}
|
|
513
515
|
}
|
|
514
516
|
}
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
+
},
|
|
518
|
+
"packageManager": "yarn@4.1.0+sha256.81a00df816059803e6b5148acf03ce313cad36b7f6e5af6efa040a15981a6ffb"
|
|
519
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/test/helper.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/test/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/type.js
CHANGED
|
File without changes
|