forked from tclindner/npm-package-json-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.9 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
{
"name": "npm-package-json-lint",
"version": "5.2.4",
"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": "src/cli.js"
},
"files": [
"src",
"CONTRIBUTING.md",
"index.d.ts"
],
"main": "src/api.js",
"types": "index.d.ts",
"scripts": {
"eslint": "eslint . --format=node_modules/eslint-formatter-pretty",
"npmpackagejsonlint": "node src/cli.js ./package.json",
"lint": "npm run eslint && npm run npmpackagejsonlint",
"test": "jest",
"test:ci": "jest --runInBand"
},
"dependencies": {
"ajv": "^6.12.6",
"ajv-errors": "^1.0.1",
"chalk": "^4.1.2",
"cosmiconfig": "^6.0.0",
"debug": "^4.3.2",
"globby": "^11.0.4",
"ignore": "^5.1.8",
"is-plain-obj": "^3.0.0",
"jsonc-parser": "^2.3.1",
"log-symbols": "^4.1.0",
"meow": "^6.1.1",
"plur": "^4.0.0",
"semver": "^7.3.5",
"slash": "^3.0.0",
"strip-json-comments": "^3.1.1"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-tc": "^15.0.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.0",
"figures": "^3.2.0",
"jest": "^27.0.6",
"npm-package-json-lint-config-default": "^3.0.0",
"npm-package-json-lint-config-tc": "^4.1.0",
"prettier": "^2.3.2"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"license": "MIT"
}