forked from adaptlearning/adapt-contrib-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 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
{
"name": "adapt-contrib-core",
"version": "6.46.5",
"framework": ">=5.20.2",
"description": "Adapt Framework kernel. Responsible for boot loading, data loading and core APIs.",
"repository": {
"type": "git",
"url": "https://github.com/adaptlearning/adapt-contrib-core.git"
},
"keywords": [
"adapt-plugin",
"adapt-core"
],
"license": "GPL-3.0",
"bugs": "https://github.com/adaptlearning/adapt-contrib-core/issues",
"private": true,
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.5",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"conventional-changelog-eslint": "^3.0.9",
"semantic-release": "^19.0.3"
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "eslint"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "eslint"
}
],
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "Chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}
]
]
}
}