This repository has been archived by the owner on Jun 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.3 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
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
{
"name": "@anaqor/planqk",
"version": "2.9.14",
"description": "PlanQK Platform CLI",
"author": "Anaqor AG",
"contributors": [
"Wurster, Michael <[email protected]>",
"Falkenthal, Michael <[email protected]>",
"Krieger, Christoph <[email protected]>",
"Falcusan, Radu <[email protected]>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/PlanQK/planqk-cli.git"
},
"keywords": [
"planqk"
],
"bin": {
"planqk": "./bin/run"
},
"main": "dist/index.js",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^2.8.2",
"@oclif/plugin-autocomplete": "^2.1.9",
"@oclif/plugin-not-found": "^2.3.23",
"@types/listr": "^0.14.9",
"adm-zip": "^0.5.10",
"async-wait-until": "^2.0.12",
"fs-extra": "^11.1.1",
"inquirer": "^8.0.0",
"listr": "^0.14.3",
"yaml": "^2.3.1"
},
"devDependencies": {
"@oclif/test": "^2.3.17",
"@types/adm-zip": "^0.5.0",
"@types/chai": "^4.3.5",
"@types/fs-extra": "^11.0.1",
"@types/inquirer": "^8.2.6",
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.3",
"chai": "^4.3.7",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.3",
"mocha": "^10.2.0",
"oclif": "^3.9.0",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"oclif": {
"bin": "planqk",
"dirname": "planqk",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-not-found",
"@oclif/plugin-autocomplete"
],
"topics": {},
"repositoryPrefix": "https://github.com/PlanQK/planqk-cli/tree/main/src/commands",
"helpClass": "./dist/help"
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "npm run build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=18.0.0"
},
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
}
}