-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.41 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
60
61
62
63
64
{
"name": "wikitourguide",
"license": "MIT",
"scripts": {
"release": "semantic-release --no-ci"
},
"dependencies": {
"@google-cloud/text-to-speech": "^3.3.1",
"axios": "^0.22.0",
"dotenv": "^10.0.0",
"mongoose": "^6.0.8",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"devDependencies": {
"semantic-release": "^18.0.0",
"semantic-release-expo": "^2.2.3"
},
"verifyConditions": [
"semantic-release-expo",
"@semantic-release/changelog"
],
"release": {
"analyzeCommits": "@semantic-release/commit-analyzer",
"verifyConditions": false,
"generateNotes": "@semantic-release/release-notes-generator",
"publish": false,
"success": false,
"prepare": {
"path": "semantic-release-expo",
"manifests": [
"packages/app/app.json"
],
"versions": {
"version": "${next.raw}",
"android": "${code}",
"ios": "${next.raw}"
}
},
"fail": false,
"dryRun": false,
"release": "semantic-release-expo",
"branches": [
"trunk"
],
"addChannel": false,
"npmPublish": true
},
"prepare": [
{
"path": "semantic-release-expo",
"manifests": [
"packages/app/app.json"
],
"versions": {
"version": "${next.raw}",
"android": "${code}",
"ios": "${next.raw}"
}
},
"@semantic-release/changelog"
],
"version": "1.0.0"
}