-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 2.03 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
{
"_from": "@synonymdev/react-native-libsodium",
"_inBundle": false,
"bugs": {
"url": "https://github.com/synonymdev/react-native-libsodium/issues"
},
"author": [
"synonymdev"
],
"bundleDependencies": false,
"deprecated": false,
"description": "The Sodium crypto library for React Native.",
"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"
},
"eslintConfig": {
"extends": [
"@react-native-community",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"eslintIgnore": [
"node_modules/"
],
"homepage": "https://github.com/synonymdev/react-native-libsodium",
"keywords": [
"react-native",
"crypto",
"nacl",
"sodium"
],
"license": "ISC",
"main": "index.js",
"name": "react-native-libsodium",
"nativePackage": true,
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/synonymdev/react-native-libsodium.git"
},
"scripts": {
"bootstrap": "yarn example && yarn && yarn pods",
"example": "yarn --cwd example",
"lint": "eslint --ext .js,.ts,.tsx .",
"pods": "cd example && pod-install --quiet",
"postinstall": "tar -xzf precompiled.tgz",
"rebuild": "./build.sh",
"typescript": "tsc --noEmit"
},
"source": "index.js",
"types": "index.d.ts",
"version": "0.0.1"
}