forked from shashkovdanil/clean-publish
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.1 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
{
"name": "clean-publish",
"version": "5.2.1",
"description": "Clean your package before publish",
"keywords": [
"npm",
"package",
"publish",
"clean"
],
"engines": {
"node": ">= 18.0.0"
},
"author": "Shashkov Danil <shashkovdanil@gmail.com>",
"license": "MIT",
"repository": "shashkovdanil/clean-publish",
"type": "module",
"types": "types.d.ts",
"bin": {
"clean-publish": "clean-publish.js",
"clear-package-json": "clear-package-json.js"
},
"scripts": {
"lint": "eslint *.js test/*.js",
"unit": "tsx node_modules/uvu/bin.js . 'test/[^/]+\\.test\\.js$'",
"schema": "ts-json-schema-generator --path types.d.ts --type Config --no-type-check --out schema.json",
"test": "pnpm unit && pnpm lint",
"clean-publish": "node ./clean-publish.js"
},
"dependencies": {
"cross-spawn": "^7.0.6",
"fast-glob": "^3.3.3",
"lilconfig": "^3.1.3",
"micromatch": "^4.0.8"
},
"devDependencies": {
"@logux/eslint-config": "^55.2.1",
"eslint": "^9.27.0",
"ts-json-schema-generator": "^2.4.0",
"tsx": "^4.19.4",
"uvu": "^0.5.6"
}
}