-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
58 lines (58 loc) · 1.55 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
{
"name": "adapt-contrib-matching",
"version": "7.5.0",
"framework": ">=5.19.1",
"homepage": "https://github.com/adaptlearning/adapt-contrib-matching",
"bugs": "https://github.com/adaptlearning/adapt-contrib-matching/issues",
"component": "matching",
"targetAttribute": "_matching",
"displayName": "Matching Question",
"description": "A question component that allows the learner to match the options to question stems",
"main": "/js/adapt-contrib-matching.js",
"keywords": [
"adapt-plugin",
"adapt-component"
],
"license": "GPL-3.0",
"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": "^21.0.1"
},
"scripts": {
"postversion": "cp package.json bower.json"
},
"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",
"bower.json"
],
"message": "Chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}