forked from shashkovdanil/clean-publish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.28 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
{
"name": "clean-publish",
"version": "4.3.0",
"description": "Clean your package before publish",
"keywords": [
"npm",
"package",
"publish",
"clean"
],
"engines": {
"node": ">= 16.0.0"
},
"author": "Shashkov Danil <[email protected]>",
"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",
"prepare": "yarn schema",
"test": "yarn unit && yarn lint"
},
"dependencies": {
"cross-spawn": "^7.0.3",
"fast-glob": "^3.3.2",
"lilconfig": "^3.1.1",
"micromatch": "^4.0.5"
},
"devDependencies": {
"@logux/eslint-config": "^52.0.2",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.1.1",
"ts-json-schema-generator": "^1.5.0",
"tsx": "^4.7.1",
"uvu": "^0.5.6"
}
}