-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.83 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.83 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
{
"name": "@quantcdn/quant-cloud-cli",
"version": "0.4.3",
"description": "Command-line interface for Quant Cloud Platform integration and management",
"type": "module",
"main": "dist/index.js",
"bin": {
"quant-cloud": "dist/index.js",
"qc": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"clean": "rimraf dist",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:unit": "NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=integration",
"test:integration": "NODE_OPTIONS=--experimental-vm-modules jest --config jest.config.integration.cjs",
"test:all": "npm run test:unit && npm run test:integration",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"prepublishOnly": "npm run clean && npm run build",
"release": "npm version patch && git push && git push --tags"
},
"keywords": [
"quant",
"cloud",
"cli",
"paas",
"hosting",
"quantcdn",
"quantgov",
"oauth",
"deployment"
],
"author": "Quant Cloud Team",
"license": "MIT",
"homepage": "https://quantcdn.io",
"repository": {
"type": "git",
"url": "https://github.com/quantcdn/quant-cloud-cli.git"
},
"bugs": {
"url": "https://github.com/quantcdn/quant-cloud-cli/issues"
},
"dependencies": {
"@quantcdn/quant-client": "^4.12.0",
"axios": "^1.13.5",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"figlet": "^1.7.0",
"gradient-string": "^2.0.2",
"inquirer": "^9.2.11",
"inquirer-autocomplete-prompt": "^3.0.1",
"js-yaml": "^4.1.0",
"node-fetch": "^3.3.2",
"open": "^9.1.0",
"pixelmatch": "^6.0.0",
"playwright": "^1.40.0",
"pngjs": "^7.0.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/figlet": "^1.5.8",
"@types/gradient-string": "^1.1.5",
"@types/inquirer": "^9.0.9",
"@types/inquirer-autocomplete-prompt": "^3.0.3",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.8.0",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.5",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.50.0",
"jest": "^30.2.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.1",
"tsx": "^4.21.0",
"typescript": "^5.2.2"
},
"overrides": {
"path-to-regexp": "0.1.13",
"qs": "^6.14.2",
"handlebars": "^4.7.9",
"flatted": "^3.4.2",
"minimatch": "^9.0.7",
"picomatch": "^4.0.4"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist/**/*",
"README.md",
"package.json"
]
}