-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.08 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
{
"name": "clean-pkg-json",
"version": "0.0.0-semantic-release",
"description": "Clean package.json before publish by removing unnecessary properties",
"keywords": [
"npm",
"package.json",
"clean",
"prepublish"
],
"license": "MIT",
"repository": "privatenumber/clean-pkg-json",
"funding": "https://github.com/privatenumber/clean-pkg-json?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"files": [
"bin",
"dist",
"skills"
],
"type": "module",
"bin": "dist/index.mjs",
"packageManager": "pnpm@9.15.4",
"scripts": {
"build": "pkgroll --target=node12.19 --minify",
"lint": "lintroll --cache .",
"test": "node tests/index.ts",
"type-check": "tsc",
"prepack": "pnpm build && ./dist/index.mjs",
"prepare": "skills-npm"
},
"devDependencies": {
"@types/node": "^22.19.15",
"cleye": "^2.3.0",
"fs-fixture": "^2.11.0",
"lintroll": "^1.30.0",
"manten": "^2.0.0",
"nano-spawn": "^2.0.0",
"npm-packlist": "^10.0.4",
"pkgroll": "^2.27.0",
"skills-npm": "^1.1.0",
"type-fest": "^5.5.0",
"typescript": "^5.9.3"
}
}