forked from vitorpamplona/react-native-ble-advertiser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.15 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
{
"name": "react-native-ble-advertiser",
"version": "0.0.16",
"description": "A react-native implementation for sending BLE advertisements",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag $PACKAGE_VERSION && git push --tags"
},
"keywords": [
"react",
"react-component",
"react-native",
"ble",
"bluetooth"
],
"author": "Vitor Pamplona <[email protected]> based on Will Dimmit's design on GitHub",
"license": "MIT",
"repository": "https://github.com/vitorpamplona/react-native-ble-advertiser",
"homepage": "https://github.com/vitorpamplona/react-native-ble-advertiser",
"bugs": "https://github.com/vitorpamplona/react-native-ble-advertiser/issues",
"peerDependencies": {
"react-native": ">=0.50"
},
"dependencies": {},
"files": [
"android/",
"ios/",
"index.js",
"index.d.ts",
"react-native.config.js"
]
}