forked from camilo5972/react-native-identicon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "react-native-identicon",
"version": "1.0.14",
"description": "React Native Component for Identicon implementation",
"main": "lib/Identicon/index.js",
"types": "lib/Identicon/index.d.ts",
"scripts": {
"build": "tsc",
"postinstall": "npm run build",
"pub": "npm version patch && publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/camilo5972/react-native-identicon.git"
},
"keywords": [
"react",
"native",
"identicon"
],
"author": "Camilo Henao",
"license": "ISC",
"bugs": {
"url": "https://github.com/camilo5972/react-native-identicon/issues"
},
"homepage": "https://github.com/camilo5972/react-native-identicon#readme",
"devDependencies": {
"typescript": "^4.1.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"@types/node": ">=12.0.0",
"react-native-webview": ">=11.0.2",
"react-native-randombytes": ">=3.6.0"
},
"dependencies": {
"@types/react-native-canvas": "0.1.13",
"react-native-canvas": "0.1.37",
"react-native-crypto": "^2.2.0"
}
}