-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
133 lines (133 loc) · 3.23 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "typescript-assistant",
"version": "0.71.3",
"description": "Combines and integrates professional Typescript tools into your project",
"main": "dist/index.js",
"bin": {
"tsa": "./dist/index.js"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"prepublishOnly": "tsc -b ./src/tsconfig.json",
"assist": "ts-node --transpile-only src/index.ts",
"release": "echo 'You can release by updating the version in package.json and pushing'",
"fix": "ts-node --transpile-only src/index fix",
"fixall": "ts-node --transpile-only src/index fixall",
"clean": "ts-node --transpile-only src/index clean",
"coverage-show": "open-cli build/coverage/index.html",
"ci": "ts-node --transpile-only src/index ci --no-format",
"lint": "eslint"
},
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AFASSoftware/typescript-assistant"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"json",
"html",
"text-summary"
],
"cache": true,
"temp-dir": "./build/nyc/cache",
"all": true,
"check-coverage": false,
"report-dir": "./build/coverage",
"es-module": false,
"lines": 1,
"statements": 0.1,
"functions": 0.1,
"branches": 0,
"watermarks": {
"lines": [
75,
100
],
"functions": [
75,
100
],
"branches": [
75,
100
],
"statements": [
75,
100
]
}
},
"prettier": {
"endOfLine": "lf",
"printWidth": 80,
"singleQuote": false,
"trailingComma": "es5",
"parser": "typescript"
},
"dependencies": {
"@eslint/js": "9.17.0",
"@types/chai": "4.3.19",
"@types/eslint__js": "8.42.3",
"@types/mocha": "10.0.10",
"async": "3.2.6",
"chai": "4.4.1",
"chokidar": "3.6.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-unused-imports": "4.1.4",
"glob": "8.1.0",
"handlebars": "4.7.8",
"husky": "9.1.7",
"import-sort-style-module": "6.0.0",
"inquirer": "7.3.3",
"mocha": "10.8.2",
"nyc": "17.1.0",
"open-cli": "8.0.0",
"prettier": "3.4.2",
"prettier-plugin-import-sort": "0.0.7",
"semver": "7.6.3",
"source-map-support": "0.5.21",
"tree-kill": "1.2.2",
"ts-node": "7.0.1",
"tslib": "2.8.1",
"tsutils": "3.21.0",
"typescript": "5.7.2",
"typescript-eslint": "8.19.0",
"ws": "7.5.2",
"yargs": "15.4.1"
},
"devDependencies": {
"@types/async": "3.2.24",
"@types/glob": "7.2.0",
"@types/inquirer": "6.5.0",
"@types/node": "22.10.5",
"@types/semver": "7.5.8",
"@types/sinon": "17.0.3",
"@types/ws": "7.4.7",
"@types/yargs": "15.0.12",
"sinon": "19.0.2"
},
"pnpm": {
"overrides": {
"@babel/traverse@<7.23.2": "^7.23.2"
}
},
"packageManager": "[email protected]+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}