-
Notifications
You must be signed in to change notification settings - Fork 218
/
package.json
67 lines (67 loc) · 2.09 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
{
"name": "react-native-sensitive-info",
"version": "6.0.0-alpha.9",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"types": "index.d.ts",
"description": "react-native-sensitive-info manages all data stored in Android Shared Preferences and iOS Keychain. You can set, get and delete keys/values using simple methods.",
"scripts": {
"build": "rimraf -rf build && rollup -c",
"prepublishOnly": "yarn build",
"localPublish": "yalc publish && cd example && yalc add react-native-sensitive-info --yarn && cd .."
},
"author": {
"name": "mCodex & ClassApp",
"email": "mtw.andrade@gmail.com"
},
"contributors": [
"Mateus Andrade mtw.andrade@gmail.com",
"Samin Shams <samin@classapp.co>"
],
"homepage": "https://mcodex.dev/react-native-sensitive-info/",
"bugs": {
"url": "https://github.com/mcodex/react-native-sensitive-info/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/mcodex/react-native-sensitive-info.git"
},
"keywords": [
"android",
"ios",
"keychain",
"shared-preferences",
"react-native",
"windows"
],
"license": "MIT",
"peerDependencies": {
"react-native": "*"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.1.2",
"react": "^17.0.1",
"react-native": "^0.62.2",
"react-native-windows": "0.63.6",
"rollup": "^2.33.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^4.0.5",
"yalc": "^1.0.0-pre.45"
}
}