-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
76 lines (76 loc) · 1.83 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
{
"name": "react-native-store-version",
"version": "1.4.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "tsc --project tsconfig.json",
"test": "jest"
},
"repository": {
"type": "git",
"url": "[email protected]:watanabeyu/react-native-store-version.git"
},
"keywords": [
"react-native",
"expo",
"appstore",
"playstore",
"version"
],
"author": "Yu Watanabe <[email protected]> (https://github.com/watanabeyu)",
"bugs": {
"url": "https://github.com/watanabeyu/react-native-store-version/issues"
},
"homepage": "https://github.com/watanabeyu/react-native-store-version",
"dependencies": {
"compare-versions": "^4.1.3"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/react-native": "^0.69.5",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"babel-jest": "^28.1.3",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^28.1.3",
"metro-react-native-babel-preset": "^0.72.0",
"node-fetch": "^3.2.10",
"prettier": "^2.7.1",
"react-native": "^0.69.3",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"jest": {
"preset": "react-native",
"moduleNameMapper": {
"^app(.*)$": "<rootDir>/$1"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json",
"diagnostics": false
}
},
"testMatch": [
"**/__tests__/**/*.test.(ts|tsx|js)",
"**/src/**/*.test.(ts|tsx|js)"
],
"testPathIgnorePatterns": [
"node_modules",
"dist"
]
}
}