forked from conventional-changelog/conventional-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.16 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
{
"author": {
"name": "Steve Mao",
"email": "[email protected]",
"url": "https://github.com/stevemao"
},
"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": "c8 mocha --timeout 30000 packages/*/test{,/*}.js",
"test-windows": "c8 mocha --timeout 60000 packages/*/test{,/*}.js",
"postinstall": "bash scripts/install.sh"
},
"version": "1.0.0",
"devDependencies": {
"better-than-before": "^1.0.0",
"c8": "^7.1.2",
"chai": "^4.2.0",
"concat-stream": "^2.0.0",
"conventional-changelog-core": "^4.2.1",
"coveralls": "^3.0.2",
"eslint": "^7.0.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.1.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",
"mkdirp": "^1.0.0",
"mocha": "^8.0.0",
"pinkie-promise": "^2.0.0",
"q": "^1.5.1",
"safe-buffer": "5.2.1",
"semver": "^6.0.0",
"shelljs": "^0.8.0",
"sinon": "^5.1.0",
"sinon-chai": "^3.1.0",
"temp": "^0.9.0",
"through2": "^4.0.0",
"tmp": "^0.2.1",
"vinyl": "^2.1.0"
}
}