-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
80 lines (80 loc) · 2.26 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
{
"name": "@eyro/react-native-beacon",
"title": "React Native Beacon",
"version": "1.0.0",
"description": "React Native plugin for scanning beacon (iBeacon platform) devices on Android and iOS.",
"main": "index.js",
"scripts": {
"test": "jest && codecov",
"test-local": "jest --coverage --watchAll && codecov && genhtml -o coverage coverage/lcov.info && open coverage/index.html",
"lint": "yarn eslint src/** test/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github_account/react-native-beacon.git",
"baseUrl": "https://github.com/github_account/react-native-beacon"
},
"keywords": [
"react-native",
"iBeacon",
"beacon",
"beacons",
"beacon-android",
"beacon-ios",
"react-native-beacon"
],
"author": {
"name": "Alann Maulana",
"email": "[email protected]"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": "^16.8.1",
"react-native": ">=0.59.0-rc.0 <1.0.x"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.2",
"@types/jest": "^24.0.23",
"@types/react-native": "^0.60.22",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.6.0",
"eslint-plugin-react": "^7.16.0",
"flow-bin": "^0.112.0",
"jest": "^24.9.0",
"react": "^16.8.3",
"react-native": "^0.62.3",
"typescript": "^3.7.2"
},
"jest": {
"preset": "react-native",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,ts}",
"!**/node_modules/**",
"!**/vendor/**"
],
"transform": {
"node_modules/react-native/.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"unmockedModulePathPatterns": [
"/node_modules/"
],
"modulePathIgnorePatterns": [
"/example"
],
"setupFiles": [
"./__mocks__/beacon.manager.mock.js"
]
}
}