-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
52 lines (52 loc) · 1.29 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
{
"name": "react-native-check-version",
"version": "1.1.1",
"description": "Check if the user is running the latest version of the app",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"test": "jest",
"lint": "prettier --write .",
"release": "semantic-release"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"jest-environment-node": "^29.5.0",
"metro-react-native-babel-preset": "^0.77.0",
"node-fetch": "^2.7.0",
"prettier": "^2.8.8",
"react-native": "^0.70.0",
"semantic-release": "^24.1.1"
},
"peerDependencies": {
"react-native": ">=0.40.0",
"react-native-device-info": ">=0.20.0"
},
"jest": {
"preset": "react-native",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tschoffelen/react-native-check-version.git"
},
"keywords": [
"react",
"native",
"version",
"checker",
"check",
"react-native",
"update",
"ios",
"android"
],
"author": "Thomas Schoffelen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tschoffelen/react-native-check-version/issues"
},
"homepage": "https://github.com/tschoffelen/react-native-check-version#readme"
}