-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
91 lines (91 loc) · 2.47 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "react-native-sim-cards-manager",
"version": "1.0.26",
"description": "react-native-sim-cards-manager description",
"main": "index.js",
"types": "types/index.d.ts",
"react-native": "index.ts",
"source": "index.ts",
"files": [
"/types",
"/src",
"/lib",
"/android",
"/ios",
"/cpp",
"/*.podspec",
"!lib/example",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"index.ts"
],
"scripts": {
"compile": "rm -rf lib && tsc",
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"lint:fix": "yarn run lint --fix",
"prettier:check": "prettier --config ./.prettierrc --check \"src*/**/*.tsx\" ",
"prettier:fix": "prettier --config ./.prettierrc --write --check \"src*/**/*.tsx\" ",
"pods": "cd example && pod-install --quiet",
"example": "yarn --cwd example"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": "https://github.com/odemolliens/react-native-sim-cards-manager",
"author": "Imran Mnts <[email protected]> (https://github.com/imranMnts)",
"license": "MIT",
"bugs": {
"url": "https://github.com/odemolliens/react-native-sim-cards-manager/issues"
},
"homepage": "https://github.com/odemolliens/react-native-sim-cards-manager#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/config-conventional": "^11.0.0",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^27.4.1",
"@types/mocha": "^9.1.0",
"@types/react": "^16.9.19",
"@types/react-native": "0.62.13",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"babel-eslint": "^10.1.0",
"commitlint": "^11.0.0",
"eslint": "7.32.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"husky": "^6.0.0",
"jest": "26.6.3",
"pod-install": "^0.1.0",
"prettier": "2.5.1",
"react": "17.0.2",
"react-native": "0.67.3",
"typescript": "4.0.7",
"@babel/core": "^7.18.5",
"@babel/eslint-parser": "^7.18.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}