-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.33 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
{
"name": "contentful-sdk-jsdoc",
"version": "2.2.0",
"description": "JSDoc template and config for the Contentful JS SDKs",
"homepage": "https://www.contentful.com/developers/docs/javascript/",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/contentful/contentful-sdk-jsdoc.git"
},
"author": "Contentful <[email protected]>",
"license": "MIT",
"scripts": {
"test": "true",
"semantic-release": "semantic-release"
},
"files": [
"jsdoc*",
"bin"
],
"dependencies": {
"taffydb": "^2.7.3"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.0",
"cz-conventional-changelog": "^3.3.0",
"jsdoc": "^4.0.0",
"json": "^11.0.0",
"semantic-release": "^22.0.12"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/changelog",
"@semantic-release/github"
]
}
}