forked from lerna/lerna-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.47 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
{
"name": "lerna-changelog",
"version": "1.0.1",
"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 <gigabo@gmail.com>",
"main": "index.js",
"bin": {
"lerna-changelog": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lerna/lerna-changelog.git"
},
"scripts": {
"build": "npm run clean && tsc",
"changelog": "node ./bin/cli.js",
"clean": "rimraf lib",
"fix": "npm run lint -- --fix",
"lint": "eslint src --ext ts --format stylish",
"prepublish": "npm run build",
"prettier": "prettier --write 'src/**/*.ts'",
"test": "jest",
"test-ci": "npm run build && jest",
"watch": "npm run build -- --watch"
},
"dependencies": {
"chalk": "^2.4.1",
"cli-highlight": "^2.1.4",
"execa": "^1.0.0",
"hosted-git-info": "^3.0.4",
"make-fetch-happen": "^7.1.1",
"p-map": "^3.0.0",
"progress": "^2.0.0",
"yargs": "^13.0.0"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^12.12.21",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"fs-extra": "^8.1.0",
"jest": "^25.2.4",
"jest-runner-eslint": "^0.7.6",
"prettier": "1.19.1",
"rimraf": "^3.0.2",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"engines": {
"node": "10.* || >= 12"
},
"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": {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": false,
"trailingComma": "es5"
}
}