-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
83 lines (83 loc) · 1.83 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "package-json-validator",
"version": "0.7.0",
"description": "Tools to validate package.json files.",
"keywords": [
"package.json",
"validator",
"package.json validator",
"lint",
"package.json linter"
],
"homepage": "https://github.com/JoshuaKGoldberg/package-json-validator#readme",
"bugs": {
"url": "https://github.com/JoshuaKGoldberg/package-json-validator/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/JoshuaKGoldberg/package-json-validator"
},
"license": "MIT",
"author": {
"name": "Nick Sullivan",
"email": "[email protected]"
},
"contributors": [
{
"name": "Nick Sullivan",
"email": "[email protected]"
},
{
"name": "JoshuaKGoldberg",
"email": "[email protected]",
"url": "https://joshuakgoldberg.com"
}
],
"type": "commonjs",
"main": "PJV.js",
"files": [
"bin/",
"demo/",
"index.html",
"LICENSE.md",
"package.json",
"README.md"
],
"scripts": {
"format": "prettier .",
"lint": "eslint . --max-warnings 0",
"prepare": "husky",
"test": "vitest"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"yargs": "~17.7.2"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
"@eslint/js": "^9.12.0",
"@release-it/conventional-changelog": "^9.0.0",
"all-contributors-for-repository": "^0.3.0",
"eslint": "^9.12.0",
"eslint-plugin-jsdoc": "^50.4.1",
"eslint-plugin-n": "^17.11.1",
"eslint-plugin-regexp": "^2.6.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-curly": "^0.3.1",
"prettier-plugin-packagejson": "^2.5.3",
"prettier-plugin-sh": "^0.14.0",
"release-it": "^17.9.0",
"vitest": "^2.1.3"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"provenance": true
}
}