-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.47 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.47 KB
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-authoring-content",
"version": "2.1.8",
"description": "Module for managing Adapt content",
"homepage": "https://github.com/adapt-security/adapt-authoring-content",
"license": "GPL-3.0",
"type": "module",
"main": "index.js",
"repository": "github:adapt-security/adapt-authoring-content",
"scripts": {
"test": "node --test 'tests/**/*.spec.js'"
},
"dependencies": {
"adapt-authoring-api": "^3.0.0",
"adapt-authoring-core": "^2.0.0"
},
"peerDependencies": {
"adapt-authoring-authored": "^1.1.1",
"adapt-authoring-contentplugin": "^1.0.6",
"adapt-authoring-jsonschema": "^1.2.0",
"adapt-authoring-mongodb": "^3.0.0",
"adapt-authoring-tags": "^1.0.2"
},
"devDependencies": {
"adapt-authoring-server": "^2.1.0",
"@semantic-release/git": "^10.0.1",
"conventional-changelog-eslint": "^6.0.0",
"semantic-release": "^25.0.2",
"standard": "^17.1.0"
},
"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} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}