-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.22 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.22 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
83
84
85
86
87
88
89
90
91
{
"name": "proxay",
"version": "2.0.0",
"author": {
"name": "François Wouts",
"email": "f@zenc.io"
},
"repository": {
"type": "git",
"url": "https://github.com/airtasker/proxay"
},
"license": "MIT",
"engines": {
"node": ">=18.12.0"
},
"scripts": {
"start": "ts-node src/cli.ts",
"start:hot": "ts-node-dev --respawn src/cli.ts",
"test": "jest --runInBand",
"ci:test": "jest --runInBand --ci",
"build": "rm -rf dist && tsc",
"lint:check": "pnpm prettier:check && pnpm tslint:check",
"tslint:check": "tslint -p .",
"prettier:check": "prettier --list-different \"**/*.ts\"",
"lint:fix": "pnpm prettier:fix && pnpm tslint:fix",
"tslint:fix": "tslint -p . --fix",
"prettier:fix": "prettier --write \"**/*.ts\""
},
"bin": {
"proxay": "./dist/cli.js"
},
"jest": {
"reporters": [
"default",
"jest-junit"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "\\.(test|spec)\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"dependencies": {
"assert-never": "^1.4.0",
"chalk": "^4.1.0",
"commander": "^10.0.1",
"content-type": "^1.0.5",
"deep-diff": "^1.0.2",
"fs-extra": "^11.3.3",
"js-yaml": "^4.1.1",
"string-similarity": "^4.0.4",
"unicode-properties": "^1.4.1"
},
"devDependencies": {
"@types/content-type": "^1.1.9",
"@types/deep-diff": "^1.0.5",
"@types/express": "^5.0.6",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.0",
"@types/rimraf": "^4.0.5",
"@types/string-similarity": "^4.0.2",
"@types/unicode-properties": "^1.3.2",
"axios": "^1.13.2",
"express": "^5.2.1",
"jest": "^29.0.0",
"jest-junit": "^16.0.0",
"prettier": "^3.8.1",
"rimraf": "^5.0.7",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
},
"packageManager": "pnpm@10.28.1"
}