-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
57 lines (57 loc) · 1.12 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
{
"name": "@existdb/node-exist",
"description": "promise based interaction with eXist DB's XML-RPC API",
"main": "index.js",
"scripts": {
"test": "standard && tape spec/tests/*.js --no-only",
"lint": "standard --fix",
"semantic-release": "semantic-release"
},
"standard": {
"ignore": [
"exist-*"
]
},
"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": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"@semantic-release/github": "^8.0.2",
"bottleneck": "^2.19.5",
"fast-glob": "^3.2.11",
"semantic-release": "^20.0.2",
"semver": "^7.3.8",
"standard": "^17.0.0",
"tape": "^5.0.1",
"yargs": "^17.3.1"
},
"dependencies": {
"got": "^12.1.0",
"lodash.assign": "^4.0.2",
"mime": "^3.0.0",
"xmlrpc": "^1.3.1"
},
"version": "0.0.0-development"
}