-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 4.04 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 4.04 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
{
"name": "spaces",
"description": "A CLI wrapper for the itopia Spaces API",
"version": "0.3.1",
"author": "Jan Van Bruggen @JanCVanB",
"bin": {
"spaces": "./bin/run"
},
"bugs": "https://github.com/itopia-inc/spaces-cli/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.3",
"conf": "^10.0.2",
"graphql": "^15.5.3",
"graphql-request": "^3.5.0",
"tslib": "^1.14.1"
},
"devDependencies": {
"@graphql-codegen/cli": "2.2.0",
"@graphql-codegen/near-operation-file-preset": "^2.1.3",
"@graphql-codegen/typescript": "2.2.1",
"@graphql-codegen/typescript-oclif": "^2.1.3",
"@oclif/dev-cli": "^1.26.0",
"@oclif/test": "^1.2.8",
"@types/chai": "^4.2.21",
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.60",
"chai": "^4.3.4",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.1.0",
"eslint-config-prettier": "^8.3.0",
"globby": "^10.0.2",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"pkg": "4.4.9",
"prettier": "2.3.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.10"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/itopia-inc/spaces-cli",
"keywords": [
"oclif"
],
"license": "none",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"main": "lib/index.js",
"oclif": {
"bin": "spaces",
"commands": "./lib/commands",
"description": "A CLI wrapper for the itopia Spaces API\nFor more information about itopia Spaces, see https://spaces.itopia.com\nFor more information about the itopia Spaces API, see https://api.spaces.itopia.com\n\nExamples:\nspaces login\nspaces help organization\nspaces organization:list\nspaces deployment:create --name='My Deployment' ...",
"plugins": [
"@oclif/plugin-help"
],
"topics": {
"collection": {
"description": "Manage your deployments' collections (end user access)\nA \"collection\" is a set of metadata for grouping spaces, and it contains:\n- spaces\n- end users"
},
"deployment": {
"description": "Manage your organizations' deployments (regional resources)\nA \"deployment\" is a set of regional itopia-managed resources for running spaces, and it contains:\n- collections (for grouping spaces)\n- settings"
},
"organization": {
"description": "Manage your organizations (administrator access)\nAn \"organization\" is a set of metadata for managing spaces, and it contains:\n- deployments (for running spaces)\n- images (for defining spaces)\n- administrators\n- a billing account"
},
"space": {
"description": "Manage your collections' spaces\nA \"space\" is a remote environment for your end users to work inside, and it contains:\n- sessions (of active end users)\n- settings"
}
}
},
"pkg": {
"scripts": "./lib/**/*.js"
},
"repository": "itopia-inc/spaces-cli",
"scripts": {
"build": "npm run compile && npm run package",
"codegen": "graphql-codegen --config codegen.yaml",
"compile": "rm -rf lib && tsc -b && rm tsconfig.tsbuildinfo",
"docsgen": "oclif-dev readme",
"e2e": "nyc --extension .ts mocha --opts mocha.opts",
"format": "prettier --ignore-path .gitignore --write .",
"format-and-error-if-any-warnings": "warnings=$(npm run format -- --check 2>&1 >/dev/null) && if [ ! -z \"$warnings\" ]; then echo \"$warnings\" && (exit 1); fi;",
"lint": "eslint . --config=.eslintrc --ext=.ts",
"lint-and-error-if-any-warnings": "eslint . --config=.eslintrc --ext=.ts --max-warnings=0",
"package": "pkg . --out-path dist",
"postdocsgen": "npm run format",
"prebuild": "npm run codegen",
"prepare": "husky install",
"test": "npm run format-and-error-if-any-warnings && npm run lint-and-error-if-any-warnings && npm run build && npm run e2e"
},
"types": "lib/index.d.ts"
}