-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 989 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 989 Bytes
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
{
"name": "equella-cli",
"version": "3.1.0",
"description": "access EQUELLA functions with its REST API",
"type": "module",
"bin": {
"eq": "cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cca/equella_cli"
},
"bugs": {
"url": "https://github.com/cca/equella_cli/issues",
"email": "phette23@gmail.com"
},
"homepage": "https://github.com/cca/equella_cli#readme",
"scripts": {
"lint": "eslint . --cache",
"test": "mocha test"
},
"author": "phette23 <phette23@gmail.com> (http://phette.net)",
"keywords": [
"equella",
"API",
"REST",
"command line"
],
"license": "ECL-2.0",
"dependencies": {
"@xmldom/xmldom": "^0.9.8",
"clipboardy": "^5.3.1",
"open": "^11.0.0",
"rc": "^1.2.8",
"xpath": "^0.0.34"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"mocha": "^11.7.5"
},
"engines": {
"node": ">=20"
}
}