-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.22 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.22 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
{
"name": "@existdb/node-exist",
"type": "module",
"description": "promise based interaction with eXist DB's XML-RPC API",
"main": "index.js",
"engines": {
"node": "^20.19.0 || >=22.11.0"
},
"scripts": {
"test": "standard && node --test --test-reporter spec spec/tests/*.js",
"test-dev": "standard --fix && node --test --test-reporter dot spec/tests/*.js",
"lint": "standard --fix",
"semantic-release": "semantic-release"
},
"standard": {
"ignore": [
"*.md"
]
},
"keywords": [
"exist-db",
"existdb",
"exist",
"db",
"database",
"xmlrpc",
"xml",
"rpc",
"api",
"promise",
"lib",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/eXist-db/node-exist.git"
},
"maintainers": [
{
"name": "Juri Leino",
"email": "npm@line-o.de"
}
],
"license": "MIT",
"devDependencies": {
"@semantic-release/github": "^12.0.2",
"semantic-release": "^25.0.2",
"bottleneck": "^2.19.5",
"fast-glob": "^3.3.3",
"semver": "^7.7.3",
"standard": "^17.1.2",
"yargs": "^18.0.0"
},
"dependencies": {
"mime": "^4.1.0",
"undici": "^7.18.2"
},
"version": "0.0.0-development"
}