forked from levibostian/semantic-release-cocoapods
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 1.97 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@ridenui/semantic-release-cocoapods",
"description": "Cocoapods publishing plugin for semantic-release fork",
"version": "1.0.2",
"author": {
"name": "Nils Bergmann",
"email": "[email protected]"
},
"authors": [
"Levi Bostian",
{
"name": "Nils Bergmann",
"email": "[email protected]"
}
],
"ava": {
"files": [
"test/**/*.test.js"
],
"timeout": "2m"
},
"bugs": {
"url": "https://github.com/ridenui/semantic-release-cocoapods/issues"
},
"dependencies": {
"@semantic-release/error": "^2.2.0",
"aggregate-error": "^3.0.0",
"execa": "^4.0.0",
"lodash": "^4.17.15",
"replace-in-file": "^6.1.0"
},
"devDependencies": {
"ava": "^3.1.0",
"codecov": "^3.0.0",
"dockerode": "^3.0.0",
"nyc": "^15.0.0",
"release-it": "^14.12.1",
"sinon": "^9.0.0",
"stream-buffers": "^3.0.2",
"xo": "^0.29.0"
},
"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",
"nyc": {
"include": [
"lib/**/*.js",
"index.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"peerDependencies": {
"semantic-release": ">=16.0.0 <18.0.0"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"repository": {
"type": "git",
"url": "https://github.com/ridenui/semantic-release-cocoapods.git"
},
"scripts": {
"codecov": "codecov -f coverage/coverage-final.json",
"lint": "xo",
"pretest": "npm run lint",
"test": "nyc ava -v",
"release": "release-it"
},
"xo": {
"prettier": true,
"space": true,
"rules": {
"unicorn/string-content": "off"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}