-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.72 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.72 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
{
"name": "@existdb/xst",
"version": "0.0.0-development",
"description": "Command line tool to interact with exist-db instances",
"main": "cli.js",
"publishConfig": {
"access": "public"
},
"bin": {
"xst": "./cli.js"
},
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.11.0"
},
"scripts": {
"test": "standard && tape 'spec/tests/**/*.js'",
"test:norest": "tape 'spec/norest/**/*.js'",
"coverage": "c8 -x 'spec' tape 'spec/tests/**/*.js'",
"coverage:norest": "c8 -x 'spec' tape 'spec/tests/**/*.js'",
"lint": "standard --fix"
},
"keywords": [
"exist-db",
"existdb",
"exist",
"xst",
"db",
"database",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/eXist-db/xst"
},
"author": {
"name": "Juri Leino",
"email": "npm@line-o.de"
},
"maintainers": [],
"license": "MIT",
"dependencies": {
"@existdb/node-exist": "^7.0.0",
"bottleneck": "^2.19.5",
"chalk": "^5.6.2",
"env-editor": "^1.3.0",
"execa": "^9.6.1",
"fast-glob": "^3.3.3",
"fflate": "^0.8.2",
"find-up-simple": "^1.0.1",
"semver": "^7.7.3",
"undici": "^7.19.2",
"yargs": "^18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@semantic-release/github": "^12.0.2",
"@types/yargs": "^17.0.35",
"c8": "^11.0.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"semantic-release": "^25.0.2",
"standard": "^17.1.2",
"tap-dot": "^2.0.0",
"tape": "^5.9.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/existdb"
},
"optionalDependencies": {
"husky": "^9.1.7"
}
}