-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.71 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
95
96
{
"name": "changelog-light",
"version": "2.0.4",
"description": "Generate a changelog from commits.",
"author": "cdcabrera",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cdcabrera/changelog-light.git"
},
"bugs": {
"url": "https://github.com/cdcabrera/changelog-light/issues"
},
"keywords": [
"change log",
"changelog",
"cli",
"commit messages",
"commits",
"conventional",
"history"
],
"engines": {
"node": ">=18.0.0"
},
"files": [
"src/*.js"
],
"bin": {
"changelog": "bin/cli.js"
},
"scripts": {
"build:deps": "bash ./scripts/dependencies.sh --doctor -u --doctorTest \"npm run test:deps\"",
"build:docs": "run-s -l test:docs docs:md",
"docs:md": "node ./scripts/readme.docs.js",
"release": "run-s release:commit",
"release:commit": "node ./bin/cli.js",
"start": "./bin/cli.js",
"test": "run-s -l test:lint test:spell* test:ci",
"test:ci": "export CI=true; jest --collectCoverage --coverageReporters=\"lcov\" --coverageReporters=\"json-summary\"",
"test:clearCache": "jest --clearCache",
"test:coverage": "run-s test:ci test:coverageSummary",
"test:coverageSummary": "node ./scripts/coverage.build.js",
"test:deps": "run-s test",
"test:dev": "eslint ./src ./bin; run-s test:spell test:local",
"test:docs": "run-s test:spell test:lint",
"test:integration": "jest --roots=./tests",
"test:integration-dev": "jest --roots=./tests --watchAll",
"test:lint": "eslint ./src ./bin",
"test:local": "jest --watch",
"test:spell-docs": "cspell ./README.md ./CONTRIBUTING.md --config ./cspell.config.json",
"test:spell": "cspell './src/**/*.js' './tests/**/*.js' --config ./cspell.config.json"
},
"jest": {
"roots": [
"src"
],
"coverageThreshold": {
"global": {
"branches": 60,
"functions": 80,
"lines": 80,
"statements": 80
}
},
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/.*/**",
"!src/logger/*"
],
"setupFilesAfterEnv": [
"<rootDir>jest.setupTests.js"
]
},
"dependencies": {
"conventional-commit-types": "^3.0.0",
"semver": "^7.6.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"cspell": "^8.16.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jsdoc-to-markdown": "^9.0.5",
"npm-check-updates": "^17.1.11",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3"
}
}