-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.06 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
{
"name": "pex-crawler",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/tomacheese/pex-crawler",
"bugs": {
"url": "https://github.com/tomacheese/pex-crawler/issues"
},
"license": "MIT",
"author": "Tomachi <[email protected]>",
"private": true,
"main": "dist/main.js",
"repository": {
"url": "[email protected]:tomacheese/pex-crawler.git",
"type": "git"
},
"scripts": {
"fix:prettier": "prettier --write src",
"lint:tsc": "tsc",
"test": "jest --runInBand --passWithNoTests --detectOpenHandles --forceExit",
"fix": "run-z fix:prettier fix:eslint",
"lint": "run-z lint:prettier,lint:eslint,lint:tsc",
"start": "tsx ./src/main.ts",
"dev": "tsx watch ./src/main.ts",
"fix:eslint": "eslint . --ext ts,tsx --fix",
"lint:eslint": "eslint . --ext ts,tsx",
"lint:prettier": "prettier --check src",
"generate-schema": "typescript-json-schema --required src/config.ts ConfigInterface -o schema/Configuration.json"
},
"devDependencies": {
"@book000/node-utils": "1.12.65",
"@types/jest": "29.5.12",
"@types/node": "20.11.19",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"axios": "1.6.7",
"cheerio": "1.0.0-rc.12",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "51.0.1",
"jest": "29.7.0",
"jest-expect-message": "1.1.3",
"prettier": "3.2.5",
"run-z": "2.0.0",
"ts-jest": "29.1.2",
"tsx": "4.7.1",
"typescript": "5.3.3",
"typescript-json-schema": "0.63.0"
},
"jest": {
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"moduleFileExtensions": [
"js",
"ts"
],
"testMatch": [
"**/*.test.ts"
],
"setupFilesAfterEnv": [
"jest-expect-message"
]
},
"packageManager": "[email protected]"
}