forked from allegro/typescript-strict-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.42 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.42 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "typescript-strict-plugin",
"version": "2.4.4",
"type": "module",
"description": "Typescript tools that help with migration to the strict mode",
"author": "Allegro",
"contributors": [
"Jaroslaw Glegola <jaroslaw.glegola@allegro.pl>",
"Kamil Krysiak <kamil.krysiak@allegro.pl>"
],
"keywords": [
"TypeScript Strict",
"TypeScript plugin",
"TypeScript Language Service"
],
"bugs": {
"url": "https://github.com/allegro/typescript-strict-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/allegro/typescript-strict-plugin.git"
},
"license": "MIT",
"bin": {
"tsc-strict": "dist/cli/tsc-strict/index.js",
"update-strict-comments": "dist/cli/update-strict-comments/index.js"
},
"main": "dist-plugin/plugin/index.js",
"private": false,
"files": [
"dist",
"dist-plugin"
],
"scripts": {
"test": "jest",
"lint": "eslint './src/**/*.ts' --quiet",
"prettier": "prettier --loglevel error --write .",
"prettier:ci": "prettier --check .",
"build": "tsc && tsc -p tsconfig.plugin.json",
"dev": "tsc --watch -p .",
"prepare": "husky"
},
"jest": {
"preset": "ts-jest",
"testTimeout": 20000,
"roots": [
"src",
"e2e"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1",
"#ansi-styles": "<rootDir>/node_modules/chalk/source/vendor/ansi-styles/index.js",
"#supports-color": "<rootDir>/node_modules/chalk/source/vendor/supports-color/index.js"
},
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.test.json"
}
],
"node_modules/(chalk|execa|ora|strip-ansi|ansi-regex|string-width|get-east-asian-width|emoji-regex|is-fullwidth-code-point|cli-cursor|restore-cursor|onetime|mimic-function|signal-exit|is-stream|npm-run-path|path-key|human-signals|is-plain-obj|unicorn-magic|is-unicode-supported|yoctocolors|stdin-discarder|cli-spinners)/.+\\.js$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(chalk|execa|ora|strip-ansi|ansi-regex|string-width|get-east-asian-width|emoji-regex|is-fullwidth-code-point|cli-cursor|restore-cursor|onetime|mimic-function|signal-exit|is-stream|npm-run-path|path-key|human-signals|is-plain-obj|unicorn-magic|is-unicode-supported|yoctocolors|stdin-discarder|cli-spinners)/)"
]
},
"dependencies": {
"chalk": "^5.6.2",
"execa": "^9.6.1",
"minimatch": "^10.1.1",
"ora": "^9.1.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@babel/core": "7.28.6",
"@babel/preset-env": "7.28.6",
"@babel/preset-typescript": "7.28.5",
"@eslint/js": "^9.39.2",
"@types/jest": "30.0.0",
"@types/node": "^25.0.10",
"@typescript-eslint/eslint-plugin": "8.53.1",
"@typescript-eslint/parser": "8.53.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"glob": "^13.0.0",
"globals": "^17.1.0",
"husky": "9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.7",
"prettier": "3.8.1",
"pretty-quick": "4.2.2",
"tmp-promise": "3.0.3",
"ts-jest": "^29.1.2",
"ts-node": "10.9.2",
"typescript": "^5.4.5",
"typescript-strict-plugin": "file:./",
"which-module": "^2.0.0"
},
"lint-staged": {
"*.(js|ts)": [
"prettier --write",
"eslint --fix"
]
},
"homepage": "https://github.com/allegro/typescript-strict-plugin#readme"
}