-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 867 Bytes
/
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
{
"name": "@react-x/keychain",
"version": "3.4.1",
"description": "Cross-platform persistent storage for ReactDOM (cookies) and React Native (keychain) apps.",
"license": "MIT",
"author": "Mark Miyashita <[email protected]>",
"homepage": "https://github.com/negativetwelve/react-x",
"repository": "https://github.com/negativetwelve/react-x/tree/master/modules/keychain",
"keywords": [
"react",
"react-native",
"react-x"
],
"main": "build/Keychain",
"files": [
"build"
],
"dependencies": {
"cookies-js": "^1.2.3",
"invariant": "^2.2.2",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"react-native-keychain": "2.0.0-rc"
},
"scripts": {
"build": "babel src --out-dir build --ignore \"**/__tests__/**\"",
"clean": "rimraf build",
"prepublishOnly": "yarn run clean && yarn run build"
}
}