-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.09 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.09 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
{
"name": "quoti-cli",
"description": "A Quoti Extensions CLI",
"version": "1.2.11",
"author": "Beyond Co @byndcloud",
"dependencies": {
"@oclif/command": "^1.8.36",
"@oclif/config": "^1.17.0",
"@oclif/plugin-autocomplete": "^1.2.0",
"@oclif/plugin-help": "^5.1.10",
"@vitejs/plugin-vue2": "^2.3.1",
"7zip-min": "^1.4.3",
"axios": "^1.8.4",
"chalk": "^4.1.2",
"chokidar": "^3.5.1",
"deindent": "^0.1.0",
"dependency-tree": "^11.0.1",
"dotenv": "^8.2.0",
"firebase": "^8.10.1",
"form-data": "^4.0.2",
"fuzzy": "^0.1.3",
"inquirer": "^8.2.0",
"inquirer-autocomplete-prompt": "^1.4.0",
"inquirer-file-tree-selection-prompt": "^1.0.13",
"json-file-plus": "^3.3.1",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"ora": "^5.4.1",
"qs": "^6.10.3",
"read-pkg-up": "^7.0.1",
"semver": "^7.3.5",
"unzipper": "^0.10.11",
"vite": "~5.3.4",
"@vitejs/plugin-react": "^4.4.1",
"vite-plugin-css-injected-by-js": "~3.5.1",
"vite-plugin-pug": "~0.3.2",
"winston": "^3.3.3",
"ws": "^8.3.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@oclif/test": "^1.2.8",
"@sinonjs/referee": "^9.1.1",
"@types/chai": "^4.2.15",
"@types/eslint": "^7.2.6",
"@types/express": "^4.17.11",
"@types/md5": "^2.3.0",
"@types/mocha": "^5.2.7",
"@vitejs/plugin-react": "^4.4.1",
"chai": "^4.2.0",
"eslint": "^8.49.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-mocha": "^10.0.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"findup-sync": "^5.0.0",
"globby": "^10.0.2",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"prettier": "^2.5.1",
"proxyquire": "^2.1.3",
"sinon": "^13.0.1"
},
"files": [
"bin"
],
"engines": {
"node": ">=20.12.2"
},
"homepage": "https://docs.quoti.cloud",
"keywords": [
"cli-quoti",
"quoti",
"cli",
"qt"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "qt",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete"
],
"hooks": {
"prerun": [
"./src/hooks/login",
"./src/hooks/show-info-on-localhost"
]
}
},
"repository": "https://github.com/byndcloud/quoti-cli",
"scripts": {
"test:unit": "NODE_ENV=test nyc mocha --forbid-only --exit \"test/unit/**/*.test.js\"",
"test:e2e": "NODE_ENV=test bash test.sh",
"generate:docs": "npx oclif manifest && npx oclif readme",
"lint": "eslint --fix -c .eslintrc.json src/**/*.js test/**/*.js",
"format": "prettier --write src/**/*.js test/**/*.js",
"build": "node build.js",
"preversion": "if [ -z $SKIP_TESTS ]; then npm run test:e2e; fi;",
"publish": "./publish.sh",
"install-npm": "npm i -g npm@10"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --cache --fix"
]
},
"quoti": {
"extensions": [
"extensionsToTest/src/extension1/App.vue"
]
}
}