-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 2.96 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "jahia-cli",
"description": "Command Line Interface to Jahia Administration panel",
"version": "0.0.1",
"author": "Francois Gerthoffert @Fgerthoffert",
"bin": {
"jahia-cli": "./bin/run"
},
"bugs": "https://github.com/fgerthoffert/jahia-cli/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"@types/base-64": "^0.1.3",
"@types/btoa": "^1.2.3",
"@types/cookie": "^0.3.3",
"@types/js-yaml": "^3.12.1",
"@types/node-fetch": "^2.5.4",
"@types/object-hash": "^1.3.1",
"@types/puppeteer": "^2.0.0",
"@types/uuid": "^8.3.0",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-link": "^1.2.13",
"apollo-link-error": "^1.1.12",
"apollo-link-http": "^1.5.16",
"axios": "^0.21.1",
"base-64": "^0.1.0",
"btoa": "^1.2.1",
"cli-ux": "^5.4.2",
"form-data": "^3.0.0",
"gql": "^1.1.2",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"js-base64": "^3.6.0",
"js-yaml": "^3.13.1",
"load-yaml-file": "^0.2.0",
"maven": "^4.7.0",
"node-fetch": "^2.6.0",
"object-hash": "^2.0.1",
"puppeteer": "^5.2.1",
"semver": "^7.3.5",
"simple-git": "^1.131.0",
"tslib": "^1",
"uuid": "^8.3.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@types/chai": "^4",
"@types/mocha": "^5",
"@types/node": "^10",
"@types/semver": "^7.3.4",
"chai": "^4",
"eslint": "^5.13",
"eslint-config-oclif": "^3.1",
"eslint-config-oclif-typescript": "^0.1",
"eslint-config-prettier": "^6.9.0",
"globby": "^10",
"mocha": "^5",
"nyc": "^14",
"ts-node": "^8",
"typescript": "^3.3"
},
"engines": {
"node": ">=12.14.1"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/fgerthoffert/jahia-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "jahia-cli",
"plugins": [
"@oclif/plugin-help"
],
"topics": {
"modules": {
"description": "Operation on Jahia modules"
},
"manifest": {
"description": "Manifests operation on Jahia for CI/CD"
},
"webprojects": {
"description": "Operation on Jahia Web Projects"
},
"search": {
"description": "Commands specific to the augmented search project (TO BE REMOVED)"
}
}
},
"repository": "jahia/jahia-cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md",
"lint": "eslint . --ext .js,.ts"
},
"types": "lib/index.d.ts"
}