-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.2 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
{
"name": "semantic-release-cocoapods",
"description": "Cocoapods publishing plugin for semantic-release ",
"version": "0.0.0",
"author": "Levi Bostian (https://github.com/levibostian/)",
"type": "module",
"ava": {
"files": [
"test/**/*.test.js"
],
"timeout": "2m"
},
"bugs": {
"url": "https://github.com/levibostian/semantic-release-cocoapods/issues"
},
"dependencies": {
"@semantic-release/error": "^4.0.0",
"aggregate-error": "^5.0.0",
"execa": "^8.0.1",
"lodash-es": "^4.17.15",
"replace-in-file": "^7.0.2"
},
"devDependencies": {
"ava": "^5.3.1",
"sinon": "^17.0.1",
"stream-buffers": "^3.0.2"
},
"files": [
"lib",
"index.js"
],
"homepage": "https://github.com/levibostian/semantic-release-cocoapods#readme",
"keywords": [
"cocoapods",
"publish",
"registry",
"semantic-release",
"version"
],
"license": "MIT",
"main": "index.js",
"peerDependencies": {
"semantic-release": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/levibostian/semantic-release-cocoapods.git"
},
"scripts": {
"test": "npx ava -v"
}
}