-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 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
87
88
89
{
"name": "license-downloader",
"version": "1.3.1",
"description": "Download the license files of the dependencies of a project",
"main": "index.js",
"bin": {
"license-downloader": "./index.js"
},
"type": "module",
"engines": {
"node": ">=18"
},
"files": [
"index.js",
"lib/",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "https://github.com/BePo65/license-downloader.git"
},
"bugs": "https://github.com/BePo65/license-downloader/issues",
"scripts": {
"lint": "npx eslint index.js lib/**/*.js test/**/*.js **/*.json",
"test": "npx mocha -R spec",
"lint-commits": "commitlint --from d6a731d70b4f2 --to HEAD --verbose",
"init-changelog": "commit-and-tag-version -i CHANGELOG.md --same-file --prerelease pre --first-release",
"release": "commit-and-tag-version -i CHANGELOG.md --same-file",
"prepare": "husky"
},
"keywords": [
"license",
"cli",
"download"
],
"author": "BePo65",
"license": "MIT",
"dependencies": {
"debug": "^4.4.0",
"got": "^14.4.5",
"jsonfile": "^6.1.0",
"rc": "^1.2.8"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-angular": "^19.7.0",
"chai": "^5.1.2",
"commit-and-tag-version": "^12.5.0",
"eslint": "^9.19.0",
"eslint-plugin-chai-expect": "^3.1.0",
"eslint-plugin-jsdoc": "^50.6.3",
"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.4.3",
"mocha": "^11.1.0",
"prettier": "^3.4.2",
"temp": "^0.9.4"
},
"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": "tools/npm-scripts/readme-updater.cjs"
}
]
}
}