-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.21 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
{
"name": "license-report-recursive",
"version": "6.7.1",
"description": "Wrapper around license-report to add recursion",
"main": "index.js",
"bin": {
"license-report-recursive": "index.js"
},
"type": "module",
"engines": {
"node": ">=18"
},
"files": [
"index.js",
"lib/",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bepo65/license-report-recursive.git"
},
"bugs": {
"url": "https://github.com/bepo65/license-report-recursive/issues"
},
"scripts": {
"start": "node index.js",
"test": "npx mocha -R spec",
"lint": "npx eslint index.js lib/**/*.js test/**/*.test.js",
"lint-commits": "commitlint --from 64d1e0f800b1 --to HEAD --verbose",
"init-changelog": "commit-and-tag-version -i CHANGELOG.md --same-file --first-release",
"release": "node scripts/readme-set-dep-version.js && commit-and-tag-version -i CHANGELOG.md --same-file",
"prepare": "husky"
},
"author": "BePo65",
"license": "MIT",
"dependencies": {
"debug": "^4.4.0",
"license-report": "^6.7.1",
"rc": "^1.2.8",
"semver": "^7.6.3"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"chai": "^5.1.2",
"commit-and-tag-version": "^12.5.0",
"eslint": "^9.17.0",
"eslint-plugin-chai-expect": "^3.1.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-security-node": "^1.1.4",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"mocha": "^11.0.1",
"prettier": "^3.4.2"
},
"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"
}
]
}
}