forked from conventional-changelog/conventional-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.85 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
{
"author": {
"name": "Steve Mao",
"email": "maochenyan@gmail.com",
"url": "https://github.com/stevemao"
},
"bin": "",
"bugs": "https://github.com/conventional-changelog/conventional-changelog/issues",
"description": "Generate a changelog from git metadata",
"engines": {
"node": ">=10"
},
"files": [],
"homepage": "https://github.com/conventional-changelog/conventional-changelog#readme",
"keywords": [
"conventional-changelog",
"readme",
"generation"
],
"license": "ISC",
"main": "",
"name": "conventional-changelog-monorepo",
"private": true,
"renovate": {
"extends": [
"config:base",
":maintainLockFilesWeekly",
":rebaseStalePrs",
":automergeDigest",
":gitSignOff",
":preserveSemverRanges"
]
},
"repository": {
"type": "git",
"url": "https://github.com/conventional-changelog/conventional-changelog.git"
},
"scripts": {
"lint": "eslint . --cache --cache-location ./node_modules/.cache/ --ignore-path .gitignore",
"fix": "eslint . --fix --cache --cache-location ./node_modules/.cache/ --ignore-path .gitignore",
"pretest": "npm run lint",
"test": "nyc mocha --timeout 30000 packages/*/test{,/*}.js",
"test-windows": "mocha --timeout 60000 packages/*/test{,/*}.js",
"release": "lerna publish --conventional-commits --dist-tag=next"
},
"version": "1.0.0",
"devDependencies": {
"better-than-before": "^1.0.0",
"chai": "^4.2.0",
"concat-stream": "^2.0.0",
"coveralls": "^3.0.2",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"forceable-tty": "^0.1.0",
"git-dummy-commit": "^1.2.0",
"git-tails": "^1.0.0",
"lerna": "^3.18.5",
"mkdirp": "^1.0.0",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"pinkie-promise": "^2.0.0",
"q": "^1.5.1",
"safe-buffer": "5.2.0",
"semver": "^6.0.0",
"shelljs": "^0.8.0",
"sinon": "^5.1.0",
"sinon-chai": "^3.1.0",
"temp": "^0.9.0",
"through2": "^3.0.0",
"tmp": "0.1.0",
"vinyl": "^2.1.0"
},
"dependencies": {
"conventional-changelog": "file:packages/conventional-changelog",
"conventional-changelog-angular": "file:packages/conventional-changelog-angular",
"conventional-changelog-atom": "file:packages/conventional-changelog-atom",
"conventional-changelog-cli": "file:packages/conventional-changelog-cli",
"conventional-changelog-codemirror": "file:packages/conventional-changelog-codemirror",
"conventional-changelog-conventionalcommits": "file:packages/conventional-changelog-conventionalcommits",
"conventional-changelog-core": "file:packages/conventional-changelog-core",
"conventional-changelog-ember": "file:packages/conventional-changelog-ember",
"conventional-changelog-eslint": "file:packages/conventional-changelog-eslint",
"conventional-changelog-express": "file:packages/conventional-changelog-express",
"conventional-changelog-jquery": "file:packages/conventional-changelog-jquery",
"conventional-changelog-jshint": "file:packages/conventional-changelog-jshint",
"conventional-changelog-preset-loader": "file:packages/conventional-changelog-preset-loader",
"conventional-changelog-writer": "file:packages/conventional-changelog-writer",
"conventional-commits-filter": "file:packages/conventional-commits-filter",
"conventional-commits-parser": "file:packages/conventional-commits-parser",
"conventional-recommended-bump": "file:packages/conventional-recommended-bump",
"git-raw-commits": "file:packages/git-raw-commits",
"git-semver-tags": "file:packages/git-semver-tags",
"gulp-conventional-changelog": "file:packages/gulp-conventional-changelog",
"standard-changelog": "file:packages/standard-changelog"
}
}