This repository has been archived by the owner on Jul 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.94 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
{
"name": "changelog-generator-twig",
"version": "1.4.1",
"description": "A changelog generator using twig templates",
"main": "bin/changelog-generator-twig.js",
"repository": "wdes/changelog",
"nyc": {
"exclude": [
"test",
"coverage",
".nyc_output"
],
"reporter": [
"text",
"text-summary"
]
},
"scripts": {
"changelog": "./bin/changelog-generator-twig.js --convention conventional+legacy --owner wdes --repo changelog --repoDir ./ --baseCommit v1.0.0",
"changelog-file-next": "npm run --silent changelog -- --headName $NEXT_VERSION --lastTagName $NEXT_VERSION > CHANGELOG.md",
"changelog-file": "npm run --silent changelog > CHANGELOG.md",
"jshint": "jshint ./",
"test": "nyc --all mocha --ui tdd",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"prettier": "prettier --ignore-path ./.prettierignore --write \"*/**/*.js\""
},
"keywords": [
"changelog",
"twig",
"git",
"npm-package"
],
"author": {
"email": "[email protected]",
"name": "William Desportes",
"url": "https://williamdes.eu"
},
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/wdes/changelog/issues"
},
"homepage": "https://github.com/wdes/changelog#readme",
"dependencies": {
"simple-git": "^3.14.0",
"snack-cli": "^2.0.0",
"twig": "^1.15.4"
},
"devDependencies": {
"chai": "^4.3.6",
"jshint": "^2.13.5",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1"
},
"prettier": {
"singleQuote": true,
"proseWrap": "never",
"trailingComma": "es5",
"bracketSpacing": true,
"printWidth": 120
},
"bin": {
"changelog-generator-twig": "bin/changelog-generator-twig.js"
}
}