-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.59 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": "source-pub",
"version": "0.8.0",
"description": "Ansel Robateau's source code ",
"dependencies": {
"markdown-toc": "^1.2.0"
},
"devDependencies": {
"@semantic-release/github": "^11.0.2",
"@semantic-release/release-notes-generator": "^14.0.1",
"git-cz": "^4.9.0",
"semantic-release": "^24.2.3"
},
"scripts": {
"build": "echo \"Not yet implemented\"",
"deploy:pr": "echo \"Not yet implemented\"",
"deploy:develop": "echo \"Not yet implemented\"",
"deploy:staging": "echo \"Not yet implemented\"",
"deploy:production": "echo \"Not yet implemented\"",
"install:dependencies": "echo \"Not yet implemented\"",
"start:feature": "./tooling/scripts/start_feature.sh",
"start:project": "./tooling/scripts/start_project.sh",
"start:hotfix": "./tooling/scripts/start_hotfix.sh",
"start:release": "./tooling/scripts/start_release.sh",
"test": "./tooling/scripts/run_tests.sh",
"test:e2e": "echo \"Not yet implemented\""
},
"author": "Ansel Robateau",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/robaone/source-pub/issues"
},
"homepage": "https://github.com/robaone/source-pub#readme",
"release": {
"branches": [
"main",
{
"name": "develop",
"prerelease": true
}
],
"plugins": [
[
"@semantic-release/release-notes-generator",
{
"linkReferences": false
}
],
[
"@semantic-release/github",
{
"successComment": false,
"failComment": false
}
]
]
}
}