-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.78 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
{
"name": "@testquality/cli",
"version": "1.2.10",
"packageManager": "yarn@4.9.2",
"main": "dist/index.js",
"bin": {
"testquality": "dist/index.js"
},
"files": [
"dist/*"
],
"license": "MIT",
"type": "commonjs",
"homepage": "https://github.com/BitModern/testQualityCli",
"repository": {
"url": "git+https://github.com/BitModern/testQualityCli.git"
},
"scripts": {
"start": "cross-env node dist/index.js",
"dev": "run-s build:clean \"build:bundle -- --watch --sourcemap\"",
"build": "run-s build:clean build:bundle build:xperm",
"build:clean": "rimraf dist",
"build:bundle": "esbuild src/index.ts --bundle --outfile=dist/index.js --platform=node --target=node14 --banner:js='#!/usr/bin/env node' --external:dtrace-provider",
"build:xperm": "chmod +x dist/index.js",
"lint": "eslint src --ext .ts",
"format:fix": "prettier --write 'src/**/*.ts'",
"package": "rimraf .env && run-s 'package:*'",
"package:macos": "pkg . --target node16-macos-x64 --compress GZip --output commands/testquality-macos",
"package:win": "pkg . --target node16-win-x64 --compress GZip --output commands/testquality-win",
"package:linux": "pkg . --target node16-linux-x64 --compress GZip --output commands/testquality-linux",
"package:alpine": "pkg . --target node16-alpine-x64 --compress GZip --output commands/testquality-alpine",
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s -r 0"
},
"dependencies": {
"@testquality/sdk": "1.16.19",
"axios": "1.5.0",
"bunyan": "1.8.12",
"bunyan-format": "0.2.1",
"debug": "^4.4.0",
"dotenv": "10.0.0",
"fast-xml-parser": "3.13.0",
"form-data": "4.0.0",
"glob": "10.3.10",
"yargs": "13.3.0",
"yup": "^1.6.1"
},
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/bunyan-format": "^0.2.3",
"@types/debug": "^4.1.12",
"@types/dotenv": "^6.1.1",
"@types/node": "^16.18.61",
"@types/supports-color": "^8.1.0",
"@types/yargs": "^13.0.2",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"conventional-changelog-cli": "4.1.0",
"cross-env": "^5.1.4",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.3.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "^6.1.1",
"npm-run-all": "^4.1.5",
"ora": "3.1.0",
"pkg": "5.8.1",
"prettier": "^3.2.5",
"rimraf": "^2.6.2",
"ts-node": "^10.2.1",
"typescript": "5.1.6"
},
"pkg": {
"assets": [
"node_modules/axios/**",
"node_modules/@isaacs/cliui/**"
]
}
}