forked from patlux/react-native-bluetooth-state-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.37 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
{
"name": "react-native-bluetooth-state-manager",
"description": "Manage the bluetooth state of your device ",
"version": "0.0.0-development",
"main": "src/index.js",
"repository": "git+https://github.com/patlux/react-native-bluetooth-state-manager.git",
"author": "Patrick Wozniak <[email protected]>",
"license": "MIT",
"types": "./types.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/ --ext .js .",
"prettier": "prettier \"**/*.+(js|json|ts|tsx)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"validate": "npm-run-all --parallel check-format lint",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@patwoz/prettier-config": "1.1.0",
"@react-native-community/eslint-config": "0.0.5",
"babel-eslint": "10.0.3",
"eslint": "6.7.2",
"eslint-plugin-prettier": "3.1.3",
"husky": "3.1.0",
"lint-staged": "9.5.0",
"npm-run-all": "4.1.5",
"prettier": "1.19.1",
"semantic-release": "17.2.3",
"semantic-release-plugin-update-version-in-files": "1.1.0",
"typescript": "4.5.4"
},
"peerDependencies": {
"prop-types": "*",
"react-native": ">= 0.44"
},
"keywords": [
"React",
"Native",
"Bluetooth",
"State",
"Manager"
],
"prettier": "@patwoz/prettier-config"
}