-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
141 lines (141 loc) · 3.95 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "sectester-js",
"version": "0.33.3",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/NeuraLegion/sectester-js.git"
},
"engines": {
"node": ">=18",
"npm": ">=10"
},
"workspaces": [
"packages/**"
],
"author": {
"name": "Artem Derevnjuk",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/NeuraLegion/sectester-js/issues"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.{ts,js,json,md}": [
"prettier --write"
]
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"tsc": "tsc",
"nx": "nx",
"husky": "husky",
"semantic-release": "semantic-release",
"start": "nx serve",
"build": "nx build",
"build:tools": "tsc -b tools/tsconfig.tools.json",
"publish": "nx publish",
"prepublish": "npm run build:tools",
"test": "nx test",
"test:coverage": "npm run test -- --coverage",
"lint": "nx workspace-lint && nx lint",
"lint:all": "nx run-many --target=lint --all",
"e2e": "nx e2e",
"build:all": "nx run-many --target=build --all",
"test:all": "nx run-many --target=test --all",
"test:coverage:all": "nx run-many --target=test --all --coverage",
"publish:all": "nx run-many --target=publish --all",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:publish": "nx affected:publish",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"prepare": "is-ci || husky"
},
"homepage": "https://github.com/NeuraLegion/sectester-js#readme",
"dependencies": {
"@har-sdk/core": "~1.4.5",
"chalk": "^4.1.2",
"ci-info": "^4.0.0",
"content-type": "^1.0.5",
"form-data": "^4.0.1",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.5",
"iconv-lite": "^0.6.3",
"reflect-metadata": "^0.2.2",
"semver": "^7.6.3",
"socks-proxy-agent": "^8.0.4",
"tslib": "~2.6.3",
"tsyringe": "^4.8.0",
"tty-table": "^4.2.3",
"uuid": "^10.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@nx/devkit": "20.0.3",
"@nx/eslint": "20.0.3",
"@nx/eslint-plugin": "20.0.3",
"@nx/jest": "20.0.3",
"@nx/js": "20.0.3",
"@nx/node": "20.0.3",
"@nx/plugin": "20.0.3",
"@nx/workspace": "20.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/content-type": "^1.1.8",
"@types/jest": "29.5.13",
"@types/node": "^18.19.57",
"@types/request-promise": "^4.1.51",
"@types/semver": "^7.5.8",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"husky": "^9.1.6",
"is-ci": "~3.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "^15.2.10",
"nock": "^13.5.5",
"nx": "20.0.3",
"prettier": "^3.3.3",
"semantic-release": "^22.0.12",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.2",
"typescript": "5.5.4"
},
"overrides": {
"socket.io-msgpack-parser": {
"notepack.io": "~3.0.1"
}
}
}