-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
106 lines (106 loc) · 2.57 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
97
98
99
100
101
102
103
104
105
106
{
"name": "lerna-changelog",
"version": "2.2.0",
"description": "Generate a changelog for a lerna monorepo",
"keywords": [
"changelog",
"lerna"
],
"homepage": "https://github.com/lerna/lerna-changelog#readme",
"bugs": {
"url": "https://github.com/lerna/lerna-changelog/issues"
},
"license": "MIT",
"author": "Bo Borgerson <[email protected]>",
"main": "index.js",
"bin": {
"lerna-changelog": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lerna/lerna-changelog.git"
},
"scripts": {
"build": "yarn clean && tsc",
"changelog": "node ./bin/cli.js",
"clean": "rimraf lib",
"fix": "yarn lint -- --fix",
"lint": "eslint src --ext ts --format stylish",
"prepack": "yarn build",
"prettier": "prettier --write 'src/**/*.ts'",
"release": "release-it",
"test": "jest",
"test-ci": "yarn build && yarn test",
"watch": "yarn build -- --watch"
},
"dependencies": {
"chalk": "^4.0.0",
"cli-highlight": "^2.1.11",
"execa": "^5.0.0",
"hosted-git-info": "^4.0.0",
"make-fetch-happen": "^9.0.0",
"p-map": "^3.0.0",
"progress": "^2.0.0",
"yargs": "^17.1.0"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node": "20.14.9",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "4.2.1",
"fs-extra": "10.1.0",
"jest": "28.1.3",
"jest-runner-eslint": "2.2.0",
"prettier": "2.8.8",
"release-it": "17.4.1",
"release-it-lerna-changelog": "5.0.0",
"rimraf": "3.0.2",
"ts-jest": "29.1.5",
"typescript": "5.0.4"
},
"engines": {
"node": "12.* || 14.* || >= 16"
},
"changelog": {
"repo": "lerna/lerna-changelog",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal"
},
"cacheDir": ".changelog"
},
"jest": {
"projects": [
{
"displayName": "test",
"roots": [
"src"
],
"preset": "ts-jest"
},
{
"displayName": "lint",
"runner": "jest-runner-eslint",
"moduleFileExtensions": [
"ts"
],
"testMatch": [
"<rootDir>/src/**/*.ts"
]
}
]
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"tabWidth": 2,
"singleQuote": false,
"trailingComma": "es5"
}
}