-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.39 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.39 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
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
84
85
86
87
88
89
90
{
"name": "npm-package-json-lint",
"version": "0.0.0",
"description": "Configurable linter for package.json files.",
"keywords": [
"lint",
"linter",
"package.json",
"audit",
"auditor",
"npm-package-json-lint"
],
"homepage": "https://github.com/tclindner/npm-package-json-lint",
"bugs": {
"url": "https://github.com/tclindner/npm-package-json-lint/issues"
},
"author": "Thomas Lindner",
"repository": {
"type": "git",
"url": "https://github.com/tclindner/npm-package-json-lint.git"
},
"bin": {
"npmPkgJsonLint": "dist/cli.js"
},
"files": [
"CONTRIBUTING.md",
"dist"
],
"main": "dist/api.js",
"types": "dist/src/api.d.ts",
"scripts": {
"build": "npm run esbuild && npm run tsc",
"esbuild": "node esbuild.config.js",
"eslint": "eslint .",
"npmpackagejsonlint": "node dist/cli.js ./package.json",
"lint": "npm run eslint && npm run npmpackagejsonlint",
"test": "npm run build && jest",
"test:ci": "jest --runInBand",
"tsc": "tsc --project tsconfig.json"
},
"dependencies": {
"ajv": "6.12.6",
"ajv-errors": "1.0.1",
"chalk": "4.1.2",
"cosmiconfig": "8.3.6",
"debug": "4.4.3",
"globby": "11.1.0",
"ignore": "5.3.2",
"is-plain-obj": "3.0.0",
"jsonc-parser": "3.3.1",
"log-symbols": "4.1.0",
"meow": "9.0.0",
"plur": "4.0.0",
"semver": "7.7.4",
"slash": "3.0.0",
"strip-json-comments": "3.1.1",
"type-fest": "5.3.1",
"validate-npm-package-name": "6.0.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/jest": "30.0.0",
"@types/node": "25.5.0",
"@typescript-eslint/eslint-plugin": "8.58.0",
"@typescript-eslint/parser": "8.58.0",
"esbuild": "0.27.4",
"esbuild-node-externals": "1.20.1",
"eslint": "10.1.0",
"eslint-config-prettier": "10.1.8",
"eslint-config-tc": "28.0.3",
"eslint-config-typescript-tc": "12.1.0",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-jest": "29.15.1",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-unicorn": "64.0.0",
"figures": "3.2.0",
"globals": "17.4.0",
"jest": "30.3.0",
"npm-package-json-lint-config-default": "9.0.1",
"npm-package-json-lint-config-tc": "10.0.2",
"prettier": "3.8.1",
"ts-jest": "29.4.6",
"typescript": "5.4.5"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"license": "MIT"
}