-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.49 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "react-native-keychain-q",
"title": "React Native Keychain Q",
"version": "0.0.7",
"description": "Keychain Service API Wrapper for React Native iOS",
"main": "lib/commonjs/index.js",
"scripts": {
"test:jest": "jest \"/src/\"",
"build:detox": "npx -p detox-cli detox build",
"test:detox": "npx -p detox-cli detox test",
"build": "bob build",
"prepare": "yarn build",
"lint": "npx eslint ./ --ignore-pattern example --ignore-pattern node_modules --fix --quiet",
"ts-check": "npx tsc --noEmit",
"clean": "cd example && npx react-native-clean-project --keep-node-modules --remove-iOS-build --remove-iOS-pods --keep-brew --keep-pods && \\rm -fr ios/Pods",
"dev-sync": "yarn build && cp -r *podspec lib ios src example/node_modules/react-native-keychain-q/",
"pod:lib:lint": "pod lib lint --quick --allow-warnings",
"postinstall": "rm -rf node_modules/dtrace-provider"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baseinc/react-native-keychain-q.git",
"baseUrl": "https://github.com/baseinc/react-native-keychain-q"
},
"keywords": [
"react-native",
"native-module",
"ios",
"keychain"
],
"author": {
"name": "Satoshi OHKI",
"email": "[email protected]"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"peerDependencies": {
"react": "^16.8.1",
"react-native": ">=0.59.0-rc.0 <1.0.x"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/runtime": "^7.8.3",
"@react-native-community/bob": "^0.8.0",
"@react-native-community/eslint-config": "^0.0.6",
"@react-native-community/eslint-plugin": "^1.0.0",
"@types/jest": "^24.9.1",
"@types/react": "^16.9.18",
"@types/react-native": "^0.61.2",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"babel-jest": "^25.1.0",
"cspell": "^4.0.44",
"detox": "^16.7.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^4.2.0",
"jest": "^25.1.0",
"lint-staged": "^10.0.1",
"metro-react-native-babel-preset": "^0.58.0",
"prettier": "^1.19.1",
"react": "^16.8.3",
"react-native": "^0.59.10",
"react-test-renderer": "^16.12.0",
"ts-jest": "^25.0.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"react-native": "src/index.ts",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"files": [
"src",
"lib",
"ios",
"README.md",
"package.json",
"*.podspec"
],
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs",
{
"flow": true
}
],
"module",
"typescript"
]
},
"detox": {
"runner-config": "example/e2e/config.json",
"configurations": {
"ios.sim.debug": {
"binaryPath": "example/ios/build/Build/Products/Debug-iphonesimulator/example.app",
"build": "export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -workspace example/ios/example.xcworkspace -scheme example -parallelizeTargets -configuration Debug -sdk iphonesimulator -derivedDataPath example/ios/build -UseModernBuildSystem=YES | xcpretty -k",
"type": "ios.simulator",
"device": {
"type": "iPhone 11 Pro"
}
}
},
"test-runner": "jest"
}
}