-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
94 lines (94 loc) · 2.29 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
84
85
86
87
88
89
90
91
92
93
94
{
"name": "license-report",
"version": "6.7.1",
"description": "creates a short report about project's dependencies (license, url etc)",
"main": "index.js",
"scripts": {
"lint": "npx eslint index.js lib/**/*.js test/**/*.js **/*.json",
"test": "npx mocha -R spec",
"release": "commit-and-tag-version -i CHANGELOG.md --same-file",
"lint-commits": "commitlint --from 59f5e4b90d2d --to HEAD --verbose",
"prepare": "husky"
},
"bin": {
"license-report": "./index.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/kessler/license-report"
},
"author": "Yaniv Kessler",
"license": "MIT",
"bugs": {
"url": "https://github.com/kessler/license-report/issues"
},
"homepage": "https://github.com/kessler/license-report",
"dependencies": {
"@kessler/tableify": "^1.0.2",
"debug": "^4.4.0",
"eol": "^0.10.0",
"got": "^14.4.5",
"rc": "^1.2.8",
"semver": "^7.6.3",
"tablemark": "^3.1.0",
"text-table": "^0.2.0",
"visit-values": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"commit-and-tag-version": "^12.5.0",
"eslint": "^9.16.0",
"eslint-plugin-chai-expect": "^3.1.0",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^17.15.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-security-node": "^1.1.4",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"mocha": "^11.0.1",
"nock": "^13.5.6",
"prettier": "^3.4.2"
},
"engines": {
"node": ">=18"
},
"files": [
"index.js",
"lib/",
"CHANGELOG.md",
"defaultHtmlStyle.css",
"html.png",
"ironsource.png",
"markdown.jpg",
"screenshot.png"
],
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"commit-and-tag-version": {
"packageFiles": [
{
"filename": "package.json",
"type": "json"
}
],
"bumpFiles": [
{
"filename": "package.json",
"type": "json"
},
{
"filename": "package-lock.json",
"type": "json"
},
{
"filename": "README.md",
"updater": "scripts/readme-updater.cjs"
}
]
}
}