-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.25 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
{
"name": "ts-cleanup",
"description": "A tool for cleaning up files built by typeScript",
"version": "1.4.1",
"author": "Panates <info@panates.com>",
"license": "MIT",
"private": true,
"dependencies": {
"chokidar": "^5.0.0",
"colors": "^1.4.0",
"commander": "^15.0.0",
"fast-glob": "^3.3.3"
},
"devDependencies": {
"@panates/eslint-config": "^2.1.6",
"@panates/eslint-config-ts": "^2.1.6",
"@panates/tsconfig": "^2.1.6",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.15.33",
"@swc/helpers": "^0.5.21",
"@types/mocha": "^10.0.10",
"@types/node": "^26.2.0",
"auto-changelog": "^2.5.1",
"c8": "^12.0.0",
"expect": "^30.4.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"dpdm": "^4.2.0",
"mocha": "^11.7.6",
"npm-check-updates": "^23.0.2",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"temp": "^0.9.4",
"ts-cleanup": "^1.3.0",
"typescript": "^6.0.3"
},
"scripts": {
"compile": "tsc --noEmit",
"prebuild": "npm run clean:build && npm run lint",
"build": "tsc -b tsconfig-build.json",
"postbuild": "node ./support/postbuild.cjs && rimraf build/*.tsbuildinfo",
"clean": "npm run clean:src && npm run clean:dist",
"clean:build": "rimraf build *.tsbuildinfo",
"clean:src": "ts-cleanup -s src --all | ts-cleanup -s test",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --max-warnings=0 --fix",
"format": "prettier . --write --log-level=warn",
"check": "dpdm -T --no-warning --no-tree ./src/index.ts",
"test": "mocha",
"precitest": "rimraf coverage",
"citest": "c8 mocha",
"qc": "npm run lint && npm run check"
},
"bin": {
"ts-cleanup": "./bin.js"
},
"type": "module",
"module": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=20.0"
},
"bugs": {
"url": "https://github.com/panates/ts-cleanup.git/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/panates/ts-cleanup.git"
},
"keywords": [
"ts",
"typescript",
"clean",
"cleanup",
"tidy"
],
"publishConfig": {
"access": "public"
}
}