forked from solinor/react-native-bluetooth-status
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.57 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
{
"name": "react-native-bluetooth-status",
"version": "1.6.7",
"description": "React-Native library to query and manage bluetooth state of the device (iOS and Android)",
"main": "index.ts",
"scripts": {
"test": "jest --passWithNoTests",
"ci:test": "jest --passWithNoTests",
"ci:publish": "yarn semantic-release",
"semantic-release": "semantic-release"
},
"keywords": [
"react-native",
"react-component",
"bluetooth",
"ios",
"android"
],
"repository": {
"type": "git",
"url": "[email protected]:solinor/react-native-bluetooth-status.git"
},
"bugs": {
"url": "https://github.com/solinor/react-native-bluetooth-status/issues"
},
"homepage": "https://github.com/solinor/react-native-bluetooth-status#readme",
"directories": {
"example": "examples"
},
"author": "Juha Linnanen",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.0",
"react-native": "^0.61.0"
},
"devDependencies": {
"@semantic-release/git": "^7.0.18",
"flow-bin": "^0.114.0",
"semantic-release": "^15.14.0",
"jest": "^24.9.0",
"react-native": "^0.61.0"
},
"dependencies": {
"@cs125/wait-until": "^0.0.3"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": "package.json",
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}