forked from publint/publint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.25 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
{
"name": "publint",
"version": "0.1.12",
"description": "Lint packaging errors",
"type": "module",
"author": "Bjorn Lu",
"license": "MIT",
"bin": "./lib/cli.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": {
"browser": "./lib/browser.js",
"node": "./lib/node.js",
"default": "./src/index.js"
}
},
"./utils": {
"types": "./utils.d.ts",
"import": {
"node": "./lib/utils-node.js",
"default": "./lib/utils.js"
}
}
},
"scripts": {
"cli": "node ./lib/cli.js",
"test": "uvu tests -i fixtures",
"prepublishOnly": "pnpm cli"
},
"engines": {
"node": ">=16"
},
"files": [
"lib",
"src",
"*.d.ts"
],
"funding": "https://bjornlu.com/sponsor",
"homepage": "https://publint.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/bluwy/publint.git",
"directory": "pkg"
},
"bugs": {
"url": "https://github.com/bluwy/publint/issues"
},
"keywords": [
"publish",
"lint"
],
"dependencies": {
"npm-packlist": "^5.1.3",
"picocolors": "^1.0.0",
"sade": "^1.8.1"
},
"devDependencies": {
"@types/npm-packlist": "3.0.0",
"uvu": "^0.5.6"
}
}