This repository has been archived by the owner on Feb 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
74 lines (74 loc) · 1.78 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
{
"name": "react-native-sodium",
"repository": {
"type": "git",
"url": "https://github.com/lyubo/react-native-sodium.git"
},
"source": "index.js",
"scripts": {
"typescript": "tsc --noEmit",
"lint": "eslint --ext .js,.ts,.tsx .",
"example": "yarn --cwd example",
"pods": "cd example && pod-install --quiet",
"bootstrap": "yarn example && yarn && yarn pods",
"postinstall": "tar -xzf precompiled.tgz",
"rebuild": "./build.sh"
},
"devDependencies": {
"@react-native-community/eslint-config": "^1.1.0",
"@types/react": "^16.9.19",
"@types/react-native": "0.62.7",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"pod-install": "^0.1.5",
"prettier": "^2.0.5",
"react": "~16.11.0",
"react-native": "~0.62.2",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"eslintConfig": {
"extends": [
"@react-native-community",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"eslintIgnore": ["node_modules/"],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"version": "0.5.0",
"description": "The Sodium crypto library for React Native.",
"author": "Lyubomir Ivanov",
"main": "index.js",
"types": "index.d.ts",
"nativePackage": true,
"license": "ISC",
"homepage": "https://github.com/lyubo/react-native-sodium",
"keywords": [
"react-native",
"crypto",
"nacl",
"sodium"
]
}