forked from eXist-db/xst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.5 KB
/
package.json
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
{
"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": "^14.18 || ^16.13 || >=18"
},
"scripts": {
"test": "standard && tape \"spec/tests/**/*.js\"",
"test:norest": "tape \"spec/norest/**/*.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": "^5.5.1",
"bottleneck": "^2.19.5",
"chalk": "^5.2.0",
"dotenv": "^16.0.3",
"env-editor": "^1.1.0",
"execa": "^7.0.0",
"fast-glob": "^3.2.12",
"semver": "^7.3.8",
"yargs": "^17.6.2"
},
"devDependencies": {
"@commitlint/cli": "^18.4.2",
"@commitlint/config-conventional": "^18.4.0",
"@semantic-release/github": "^9.2.1",
"@types/yargs": "^17.0.17",
"conventional-changelog-conventionalcommits": "^7.0.2",
"semantic-release": "^22.0.5",
"standard": "^17.0.0",
"tape": "^5.6.1"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/existdb"
},
"optionalDependencies": {
"husky": "^8.0.2"
}
}