-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 2.13 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
{
"name": "test-quality-cli",
"version": "1.2.0",
"main": "dist/index.js",
"bin": "dist/index.js",
"license": "MIT",
"type": "commonjs",
"scripts": {
"start": "cross-env node dist/index.js",
"serve": "ts-node ./src/index.ts",
"build": "yarn run clean && tsc --project ./tsconfig.json",
"rebuild": "tsc --project ./tsconfig.json",
"lint": "eslint src --ext .ts",
"format:fix": "prettier --write 'src/**/*.ts'",
"clean": "rimraf dist/*",
"package": "rimraf .env && yarn package:macos && yarn package:win && yarn package:linux && yarn package:alpine",
"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"
},
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/bunyan-format": "^0.2.3",
"@types/dotenv": "^6.1.1",
"@types/node": "^16.18.61",
"@types/supports-color": "^8.1.0",
"@types/yargs": "^13.0.2",
"conventional-changelog-cli": "4.1.0",
"cross-env": "^5.1.4",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-typescript": "^0.14.0",
"ora": "3.1.0",
"pkg": "5.8.1",
"prettier": "^2.3.2",
"rimraf": "^2.6.2",
"ts-node": "^10.2.1",
"typescript": "5.1.6"
},
"dependencies": {
"@testquality/sdk": "1.12.17",
"axios": "^1.5.0",
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1",
"dotenv": "^10.0.0",
"fast-xml-parser": "^3.13.0",
"form-data": "^4.0.0",
"glob": "^10.3.10",
"yargs": "^13.3.0"
},
"pkg": {
"assets": [
"node_modules/axios/**",
"node_modules/@isaacs/cliui/**"
]
}
}