-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
87 lines (87 loc) · 2.14 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
{
"name": "proxay",
"version": "1.9.0",
"author": {
"name": "François Wouts",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/airtasker/proxay"
},
"license": "MIT",
"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": "yarn prettier:check && yarn tslint:check",
"tslint:check": "tslint -p .",
"prettier:check": "prettier --list-different \"**/*.ts\"",
"lint:fix": "yarn prettier:fix && yarn 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.2.1",
"chalk": "^4.1.0",
"commander": "^10.0.1",
"content-type": "^1.0.5",
"deep-diff": "^1.0.2",
"fs-extra": "^11.2.0",
"js-yaml": "^4.1.0",
"string-similarity": "^4.0.4",
"unicode-properties": "^1.4.1"
},
"devDependencies": {
"@types/content-type": "^1.1.8",
"@types/deep-diff": "^1.0.5",
"@types/express": "^4.17.21",
"@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.7.2",
"express": "^4.19.2",
"jest": "^29.0.0",
"jest-junit": "^16.0.0",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.5",
"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"
}
}