forked from Meeco/js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.89 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.89 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@meeco/cli",
"description": "A CLI tool for interacting with the Meeco APIs",
"version": "3.1.1",
"author": "Meeco",
"private": true,
"bin": {
"meeco": "./bin/run"
},
"bugs": "https://github.com/Meeco/cli/issues",
"dependencies": {
"@meeco/cryppo": "2.0.2",
"@meeco/file-storage-node": "5.0.4",
"@meeco/keystore-api-sdk": "10.1.1-develop.20230816154849.c7c2018",
"@meeco/sdk": "^5.0.0",
"@meeco/vault-api-sdk": "39.6.1-develop.20231213134427.3dde2fcb3",
"oclif": "^3.1.0",
"@oclif/core": "^1.9.9",
"@oclif/plugin-version": "^1.1.1",
"@oclif/plugin-update": "^3.0.0",
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"chalk": "^4.1.2",
"date-fns": "^2.28.0",
"debug": "^4.3.4",
"express": "^4.18.1",
"form-data": "^4.0.0",
"jsrp": "~0.2.4",
"node-fetch": "^2.6.7",
"node-forge": "0.10.0",
"qs": "^6.11.0",
"tslib": "^2.4.0",
"yaml": "~2.1.1"
},
"devDependencies": {
"@oclif/test": "^2.1.0",
"@types/chai": "^4.3.1",
"@types/express": "^4.17.11",
"@types/jsrp": "~0.2.3",
"@types/node-fetch": "^2.5.10",
"@types/node-forge": "~0.9.7",
"@types/node": "^16.18.82",
"@types/mocha": "^9.1.1",
"@types/sinon": "^10.0.12",
"chai": "^4.3.6",
"lerna": "^5.1.6",
"ts-mocha": "^10.0.0",
"nock": "^13.2.8",
"prettier": "^2.7.1",
"sinon": "^14.0.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tslint-config-prettier": "^1.18.0",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=16.15.1",
"npm": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/Meeco/cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "meeco",
"repositoryPrefix": "https://github.com/Meeco/cli/blob/master/<%- commandPath %>",
"topics": {
"client-task-queue": {
"description": "Commands related client-side jobs for the user"
},
"connections": {
"description": "Commands related to connections between Meeco users"
},
"items": {
"description": "Commands related to a Meeco vault items"
},
"organization-members": {
"description": "Commands related to managing members of an organizations within Meeco"
},
"organization-services": {
"description": "Commands related to managing services for an organizations within Meeco"
},
"organizations": {
"description": "Commands related to managing Organizations within Meeco"
},
"shares": {
"description": "Commands related to shared data between connected Meeco users"
},
"templates": {
"description": "Commands related to vault item templates"
},
"users": {
"description": "Commands related to a meeco user account"
}
},
"plugins": [
"@oclif/plugin-version",
"@oclif/plugin-help"
],
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
]
},
"repository": "Meeco/cli",
"scripts": {
"docs": "npm run readme",
"readme": "node -r tsconfig-paths/register node_modules/.bin/oclif readme && prettier --write README.md",
"lint": "tslint -p . -t stylish -c ../../tslint.json && tslint -p test/tsconfig.json -t stylish -c ../../tslint.json",
"posttest": "npm run lint && npm run format:check",
"format:check": "prettier -c \"src/**/*.ts\" \"test/**/*.ts\"",
"format:write": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" *.json README.md",
"prepack": "touch package-lock.json && ./node_modules/.bin/tsc -p tsconfig.build.json",
"test": "ts-mocha -p ./test/tsconfig.json \"./test/**/*.test.ts\"",
"prepkg": "npm run prepack",
"build": "npm run pkg",
"pkg": "oclif pack tarballs"
},
"types": "lib/index.d.ts"
}