-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
92 lines (92 loc) · 2.3 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
{
"name": "typescript-strict-plugin",
"version": "2.4.4",
"description": "Typescript tools that help with migration to the strict mode",
"author": "Allegro",
"contributors": [
"Jaroslaw Glegola <[email protected]>",
"Kamil Krysiak <[email protected]>"
],
"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/index.js",
"private": false,
"files": [
"dist"
],
"scripts": {
"test": "jest",
"lint": "./node_modules/.bin/eslint './src/**/*.ts' --env jest --quiet",
"prettier": "prettier --loglevel error --write .",
"prettier:ci": "prettier --check .",
"build": "tsc",
"dev": "tsc --watch -p ."
},
"jest": {
"preset": "ts-jest",
"testTimeout": 20000,
"roots": [
"src",
"e2e"
]
},
"dependencies": {
"chalk": "^3.0.0",
"execa": "^4.0.0",
"minimatch": "^9.0.3",
"ora": "^5.4.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.0",
"@babel/preset-typescript": "7.9.0",
"@types/jest": "27.4.0",
"@types/node": "^14.14.35",
"@types/ora": "^3.2.0",
"@typescript-eslint/eslint-plugin": "6.7.3",
"@typescript-eslint/parser": "6.7.3",
"eslint": "8.50.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"glob": "^7.1.6",
"husky": "4.2.3",
"jest": "^29.7.0",
"lint-staged": "^10.5.4",
"prettier": "3.0.3",
"pretty-quick": "3.1.0",
"tmp-promise": "2.0.2",
"ts-jest": "^29.1.2",
"ts-node": "10.4.0",
"typescript": "^5.4.5",
"typescript-strict-plugin": "file:./",
"which-module": "^2.0.0"
},
"lint-staged": {
"*.(js|ts)": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"homepage": "https://github.com/allegro/typescript-strict-plugin#readme"
}