forked from SelfLender/react-native-biometrics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "react-native-biometrics",
"version": "3.0.1",
"summary": "A React Native library for biometrics",
"description": "React Native biometric functionality for signing and encryption",
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"types": "build/esm/index.d.ts",
"scripts": {
"clean": "rm -rf build && rm -rf node_modules && npm install",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --target es5 --outDir build/cjs --module commonjs",
"build:esm": "tsc --target es5 --outDir build/esm --module esnext",
"release": "npm run clean && npm run build && npm publish"
},
"keywords": [
"react-native",
"android",
"ios",
"biometrics",
"authentication",
"auth",
"fingerprint",
"touch-id",
"face-id"
],
"homepage": "https://github.com/SelfLender/react-native-biometrics",
"contributors": [],
"repository": {
"type": "git",
"url": "git+https://github.com/SelfLender/react-native-biometrics.git"
},
"private": false,
"author": {
"name": "Brandon Hines",
"url": "https://github.com/NappyPirate"
},
"license": "MIT",
"peerDependencies": {
"react-native": ">=0.60.0"
},
"bugs": {
"url": "https://github.com/SelfLender/react-native-biometrics/issues"
},
"devDependencies": {
"typescript": "^3.7.2"
}
}