-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 2.83 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
{
"name": "@2bad/rozetka",
"version": "1.0.0",
"description": "Unofficial REST API client for rozetka.com.ua",
"keywords": [],
"homepage": "https://github.com/2BAD/rozetka#readme",
"bugs": {
"url": "https://github.com/2BAD/rozetka/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/2BAD/rozetka.git"
},
"license": "MIT",
"author": "2BAD (https://github.com/2BAD)",
"contributors": [
{
"name": "Jason Hyde",
"email": "[email protected]",
"url": "https://github.com/mrhyde"
}
],
"type": "module",
"exports": "./build/index.js",
"typings": "./build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"clean": "rimraf build",
"lint": "eslint . --ext .ts",
"lint:fix": "run-s \"lint -- --fix\"",
"prepublishOnly": "run-s clean build",
"test": "jest --coverage",
"test:integration": "jest integration --coverage",
"test:unit": "jest unit --coverage",
"preversion": "run-s clean lint test build"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"jest": {
"collectCoverageFrom": [
"source/**/*.ts?(x)"
],
"coverageDirectory": "coverage",
"extensionsToTreatAsEsm": [
".ts"
],
"globals": {
"ts-jest": {
"useESM": true
}
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"modulePathIgnorePatterns": [
"<rootDir>/build/"
],
"preset": "ts-jest/presets/default-esm",
"setupFiles": [
"dotenv/config"
],
"setupFilesAfterEnv": [
"jest-extended/all"
],
"testMatch": [
"<rootDir>/source/**/test.*.ts?(x)"
],
"testTimeout": 30000
},
"dependencies": {
"got": "12.0.3",
"lodash.chunk": "4.2.0",
"roarr": "7.11.0",
"serialize-error": "9.1.1",
"zod": "3.14.4"
},
"devDependencies": {
"@2bad/tsconfig": "1.3.0",
"@types/jest": "27.4.1",
"@types/node": "17.0.23",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"dotenv": "16.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard-with-typescript": "21.0.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "25.3.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "5.2.0",
"jest": "27.5.1",
"jest-extended": "2.0.0",
"nock": "13.2.4",
"npm-run-all": "4.1.5",
"prettier": "2.6.2",
"rimraf": "3.0.2",
"ts-jest": "27.1.4",
"ts-node": "10.7.0",
"typescript": "4.6.3"
},
"volta": {
"node": "17.9.0"
},
"wallaby": {
"autoDetect": true,
"env": {
"params": {
"runner": "--experimental-vm-modules"
}
}
}
}