UNPKG

2.63 kBJSONView Raw
1{
2 "name": "lerna-changelog",
3 "version": "2.2.0",
4 "description": "Generate a changelog for a lerna monorepo",
5 "keywords": [
6 "changelog",
7 "lerna"
8 ],
9 "homepage": "https://github.com/lerna/lerna-changelog#readme",
10 "bugs": {
11 "url": "https://github.com/lerna/lerna-changelog/issues"
12 },
13 "license": "MIT",
14 "author": "Bo Borgerson <gigabo@gmail.com>",
15 "main": "index.js",
16 "bin": {
17 "lerna-changelog": "bin/cli.js"
18 },
19 "repository": {
20 "type": "git",
21 "url": "git+https://github.com/lerna/lerna-changelog.git"
22 },
23 "scripts": {
24 "build": "yarn clean && tsc",
25 "changelog": "node ./bin/cli.js",
26 "clean": "rimraf lib",
27 "fix": "yarn lint -- --fix",
28 "lint": "eslint src --ext ts --format stylish",
29 "prepack": "yarn build",
30 "prettier": "prettier --write 'src/**/*.ts'",
31 "release": "release-it",
32 "test": "jest",
33 "test-ci": "yarn build && yarn test",
34 "watch": "yarn build -- --watch"
35 },
36 "dependencies": {
37 "chalk": "^4.0.0",
38 "cli-highlight": "^2.1.11",
39 "execa": "^5.0.0",
40 "hosted-git-info": "^4.0.0",
41 "make-fetch-happen": "^9.0.0",
42 "p-map": "^3.0.0",
43 "progress": "^2.0.0",
44 "yargs": "^17.1.0"
45 },
46 "devDependencies": {
47 "@types/jest": "27.0.2",
48 "@types/node": "14.17.21",
49 "@typescript-eslint/eslint-plugin": "5.0.0",
50 "@typescript-eslint/parser": "5.0.0",
51 "eslint": "7.32.0",
52 "eslint-config-prettier": "8.3.0",
53 "eslint-plugin-prettier": "4.0.0",
54 "fs-extra": "10.0.0",
55 "jest": "27.2.5",
56 "jest-runner-eslint": "0.11.1",
57 "prettier": "2.4.1",
58 "release-it": "14.11.6",
59 "release-it-lerna-changelog": "3.1.0",
60 "rimraf": "3.0.2",
61 "ts-jest": "27.0.5",
62 "typescript": "4.4.3"
63 },
64 "engines": {
65 "node": "12.* || 14.* || >= 16"
66 },
67 "changelog": {
68 "repo": "lerna/lerna-changelog",
69 "labels": {
70 "breaking": ":boom: Breaking Change",
71 "enhancement": ":rocket: Enhancement",
72 "bug": ":bug: Bug Fix",
73 "documentation": ":memo: Documentation",
74 "internal": ":house: Internal"
75 },
76 "cacheDir": ".changelog"
77 },
78 "jest": {
79 "projects": [
80 {
81 "displayName": "test",
82 "roots": [
83 "src"
84 ],
85 "preset": "ts-jest"
86 },
87 {
88 "displayName": "lint",
89 "runner": "jest-runner-eslint",
90 "moduleFileExtensions": [
91 "ts"
92 ],
93 "testMatch": [
94 "<rootDir>/src/**/*.ts"
95 ]
96 }
97 ]
98 },
99 "prettier": {
100 "arrowParens": "avoid",
101 "printWidth": 120,
102 "tabWidth": 2,
103 "singleQuote": false,
104 "trailingComma": "es5"
105 }
106}