-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.41 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.41 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"author": "MarkLogic",
"name": "marklogic",
"description": "The official MarkLogic Node.js client API.",
"homepage": "https://github.com/marklogic/node-client-api",
"version": "4.1.0",
"license": "Apache-2.0",
"main": "./lib/marklogic.js",
"types": "marklogic.d.ts",
"files": [
"lib",
"marklogic.d.ts",
"README.md",
"NOTICE.txt",
"LICENSE.txt",
"CHANGELOG.md"
],
"scripts": {
"doc": "jsdoc -c jsdoc.json lib/*.js README.md",
"lint": "gulp lint",
"pretest:typescript": "npm run test:compile",
"test:types": "tsc --noEmit",
"test:compile": "tsc test-typescript/*-runtime.test.ts",
"test:typescript": "npx mocha test-typescript/*.js"
},
"keywords": [
"marklogic",
"nosql",
"database",
"dbms",
"search",
"query",
"json",
"xml",
"http",
"xquery",
"xpath"
],
"dependencies": {
"@fastify/busboy": "3.2.0",
"big-integer": "1.6.52",
"concat-stream": "2.0.0",
"duplexify": "4.1.3",
"form-data": "4.0.4",
"json-text-sequence": "4.0.2",
"multipart-stream": "2.0.1",
"qs": "6.15.0",
"through2": "4.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/marklogic/node-client-api.git"
},
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@jsdoc/salty": "0.2.9",
"@types/mocha": "10.0.10",
"@types/node": "22.10.1",
"ajv": "8.17.1",
"ast-types": "0.14.2",
"astring": "1.9.0",
"bunyan": "1.8.15",
"chai": "6.2.0",
"core-util-is": "1.0.3",
"eslint": "9.38.0",
"gulp": "5.0.1",
"gulp-eslint-new": "2.5.0",
"gulp-mocha": "10.0.1",
"intercept-stdout": "0.1.2",
"jsdoc": "4.0.5",
"mocha": "11.7.5",
"mocha-junit-reporter": "2.2.1",
"moment": "2.30.1",
"sanitize-html": "2.17.0",
"should": "13.2.3",
"stream-to-array": "2.3.0",
"typescript": "5.7.2"
},
"optionalDependencies": {
"kerberos": "^2.0.1",
"vinyl": "^3.0.0"
},
"overrides": {
"ansi-styles": "4.3.0",
"ansi-regex": "5.0.1",
"braces": "3.0.3",
"brace-expansion": "2.0.2",
"chalk": "4.1.2",
"color-convert": "3.1.0",
"color-name": "2.0.0",
"cross-spawn": "7.0.6",
"debug": "4.3.6",
"glob": "12.0.0",
"glob-parent": "6.0.2",
"minimatch": "5.1.0",
"semver": "7.5.3",
"strip-ansi": "6.0.0",
"supports-color": "7.2.0",
"tar-fs": "2.1.4",
"wrap-ansi": "6.2.0"
}
}