legispro-cli 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +696 -0
- package/bin/dev +17 -0
- package/bin/dev.cmd +3 -0
- package/bin/run +5 -0
- package/bin/run.cmd +3 -0
- package/dist/commands/backup/create.d.ts +7 -0
- package/dist/commands/backup/create.js +26 -0
- package/dist/commands/backup/list.d.ts +7 -0
- package/dist/commands/backup/list.js +38 -0
- package/dist/commands/collection/add.d.ts +12 -0
- package/dist/commands/collection/add.js +108 -0
- package/dist/commands/collection/create.d.ts +14 -0
- package/dist/commands/collection/create.js +132 -0
- package/dist/commands/collection/delete.d.ts +10 -0
- package/dist/commands/collection/delete.js +53 -0
- package/dist/commands/collection/download.d.ts +11 -0
- package/dist/commands/collection/download.js +87 -0
- package/dist/commands/collection/get.d.ts +10 -0
- package/dist/commands/collection/get.js +54 -0
- package/dist/commands/collection/list.d.ts +7 -0
- package/dist/commands/collection/list.js +25 -0
- package/dist/commands/collection/perms.d.ts +12 -0
- package/dist/commands/collection/perms.js +82 -0
- package/dist/commands/collection/update.d.ts +16 -0
- package/dist/commands/collection/update.js +174 -0
- package/dist/commands/collection/upload.d.ts +12 -0
- package/dist/commands/collection/upload.js +127 -0
- package/dist/commands/config/get.d.ts +1 -0
- package/dist/commands/config/get.js +19 -0
- package/dist/commands/config/set.d.ts +1 -0
- package/dist/commands/config/set.js +125 -0
- package/dist/commands/db/init.d.ts +7 -0
- package/dist/commands/db/init.js +90 -0
- package/dist/commands/db/memory.d.ts +7 -0
- package/dist/commands/db/memory.js +27 -0
- package/dist/commands/db/uptime.d.ts +7 -0
- package/dist/commands/db/uptime.js +17 -0
- package/dist/commands/db/version.d.ts +7 -0
- package/dist/commands/db/version.js +17 -0
- package/dist/commands/document/copy.d.ts +7 -0
- package/dist/commands/document/copy.js +35 -0
- package/dist/commands/document/list.d.ts +7 -0
- package/dist/commands/document/list.js +34 -0
- package/dist/commands/group/create.d.ts +14 -0
- package/dist/commands/group/create.js +132 -0
- package/dist/commands/group/delete.d.ts +10 -0
- package/dist/commands/group/delete.js +50 -0
- package/dist/commands/group/get.d.ts +10 -0
- package/dist/commands/group/get.js +51 -0
- package/dist/commands/group/list.d.ts +7 -0
- package/dist/commands/group/list.js +20 -0
- package/dist/commands/group/update.d.ts +14 -0
- package/dist/commands/group/update.js +132 -0
- package/dist/commands/locks/add.d.ts +7 -0
- package/dist/commands/locks/add.js +80 -0
- package/dist/commands/locks/clear.d.ts +7 -0
- package/dist/commands/locks/clear.js +23 -0
- package/dist/commands/locks/list.d.ts +7 -0
- package/dist/commands/locks/list.js +86 -0
- package/dist/commands/services/health.d.ts +8 -0
- package/dist/commands/services/health.js +66 -0
- package/dist/commands/user/create.d.ts +26 -0
- package/dist/commands/user/create.js +374 -0
- package/dist/commands/user/delete.d.ts +10 -0
- package/dist/commands/user/delete.js +58 -0
- package/dist/commands/user/get.d.ts +10 -0
- package/dist/commands/user/get.js +53 -0
- package/dist/commands/user/list.d.ts +7 -0
- package/dist/commands/user/list.js +24 -0
- package/dist/commands/user/login.d.ts +13 -0
- package/dist/commands/user/login.js +93 -0
- package/dist/commands/user/update.d.ts +25 -0
- package/dist/commands/user/update.js +267 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +5 -0
- package/dist/lib/fusiondb-client.d.ts +52 -0
- package/dist/lib/fusiondb-client.js +655 -0
- package/dist/lib/rclone-client.d.ts +11 -0
- package/dist/lib/rclone-client.js +41 -0
- package/dist/lib/types.d.ts +79 -0
- package/dist/lib/types.js +2 -0
- package/dist/lib/utils.d.ts +4 -0
- package/dist/lib/utils.js +7 -0
- package/dist/lib/xml-templates.d.ts +6 -0
- package/dist/lib/xml-templates.js +66 -0
- package/oclif.manifest.json +1063 -0
- package/package.json +98 -0
package/package.json
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "legispro-cli",
|
|
3
|
+
"version": "1.0.7",
|
|
4
|
+
"description": "LegisPro CLI",
|
|
5
|
+
"author": "bmckinney",
|
|
6
|
+
"bin": {
|
|
7
|
+
"legispro": "./bin/run"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/Xcential-Corporation/legispro-cli",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"main": "dist/index.js",
|
|
12
|
+
"files": [
|
|
13
|
+
"/bin",
|
|
14
|
+
"/dist",
|
|
15
|
+
"/npm-shrinkwrap.json",
|
|
16
|
+
"/oclif.manifest.json"
|
|
17
|
+
],
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@oclif/core": "^2.8.11",
|
|
20
|
+
"@oclif/plugin-help": "^5.2.11",
|
|
21
|
+
"@oclif/plugin-plugins": "^3.1.6",
|
|
22
|
+
"ascii-table": "^0.0.9",
|
|
23
|
+
"axios": "^1.4.0",
|
|
24
|
+
"chalk": "^2.4.1",
|
|
25
|
+
"enquirer": "^2.3.6",
|
|
26
|
+
"form-data": "^4.0.0",
|
|
27
|
+
"fs-extra": "^11.1.1",
|
|
28
|
+
"makensis": "^2.0.7",
|
|
29
|
+
"node-emoji": "^2.1.0",
|
|
30
|
+
"node-fetch": "^3.3.1",
|
|
31
|
+
"ora": "^3.4.0",
|
|
32
|
+
"path": "^0.12.7",
|
|
33
|
+
"rclone.js": "^0.6.6",
|
|
34
|
+
"ripemd160": "^2.0.2",
|
|
35
|
+
"treeify": "^1.1.0",
|
|
36
|
+
"xml2js": "^0.6.0",
|
|
37
|
+
"xmldom": "^0.6.0",
|
|
38
|
+
"xpath": "^0.0.32"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@oclif/test": "^2.3.26",
|
|
42
|
+
"@types/chai": "^4.3.5",
|
|
43
|
+
"@types/fs-extra": "^11.0.1",
|
|
44
|
+
"@types/mocha": "^10.0.1",
|
|
45
|
+
"@types/node": "^20.4.1",
|
|
46
|
+
"@types/ora": "^3.2.0",
|
|
47
|
+
"chai": "^4.3.7",
|
|
48
|
+
"eslint": "^8.44.0",
|
|
49
|
+
"eslint-config-oclif": "^4.0.0",
|
|
50
|
+
"eslint-config-oclif-typescript": "^1.0.3",
|
|
51
|
+
"globby": "^13.2.2",
|
|
52
|
+
"mocha": "^10.2.0",
|
|
53
|
+
"oclif": "^3.9.1",
|
|
54
|
+
"rimraf": "^5.0.1",
|
|
55
|
+
"shx": "^0.3.4",
|
|
56
|
+
"ts-node": "^10.9.1",
|
|
57
|
+
"tslib": "^2.6.0",
|
|
58
|
+
"typescript": "^5.1.6"
|
|
59
|
+
},
|
|
60
|
+
"oclif": {
|
|
61
|
+
"bin": "lp",
|
|
62
|
+
"dirname": "legispro-cli",
|
|
63
|
+
"commands": "./dist/commands",
|
|
64
|
+
"topicSeparator": " ",
|
|
65
|
+
"topics": {
|
|
66
|
+
"hello": {
|
|
67
|
+
"description": "Say hello to the world and others"
|
|
68
|
+
},
|
|
69
|
+
"plugins": [
|
|
70
|
+
"@oclif/plugin-help",
|
|
71
|
+
"@oclif/plugin-not-found"
|
|
72
|
+
]
|
|
73
|
+
},
|
|
74
|
+
"macos": {
|
|
75
|
+
"identifier": "com.legispro.cli"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"scripts": {
|
|
79
|
+
"build": "rimraf dist && tsc -b",
|
|
80
|
+
"build-win": "rimraf tmp && oclif pack win",
|
|
81
|
+
"build-mac": "rimraf tmp && oclif pack macos",
|
|
82
|
+
"build-deb": "rimraf tmp && oclif pack deb",
|
|
83
|
+
"lint": "eslint . --ext .ts --config .eslintrc",
|
|
84
|
+
"postpack": "shx rm -f oclif.manifest.json",
|
|
85
|
+
"posttest": "yarn lint",
|
|
86
|
+
"prepack": "yarn build && oclif manifest && oclif readme",
|
|
87
|
+
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
88
|
+
"version": "oclif readme && git add README.md"
|
|
89
|
+
},
|
|
90
|
+
"engines": {
|
|
91
|
+
"node": ">=16.0.0"
|
|
92
|
+
},
|
|
93
|
+
"bugs": "https://github.com/Xcential-Corporation/legispro-cli/issues",
|
|
94
|
+
"keywords": [
|
|
95
|
+
"oclif"
|
|
96
|
+
],
|
|
97
|
+
"types": "dist/index.d.ts"
|
|
98
|
+
}
|