-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 744 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 744 Bytes
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
{
"name": "@react-x/storage",
"version": "3.4.1",
"description": "Cross-platform storage for ReactDOM (localStorage) and React Native (AsyncStorage) apps.",
"license": "MIT",
"author": "Mark Miyashita <mark@miyashita.co>",
"homepage": "https://github.com/negativetwelve/react-x",
"repository": "https://github.com/negativetwelve/react-x/tree/master/modules/storage",
"keywords": [
"react",
"react-native",
"react-x"
],
"main": "build/Storage",
"files": [
"build"
],
"peerDependencies": {
"react-native": ">=0.59.8"
},
"scripts": {
"build": "babel src --out-dir build --ignore \"**/__tests__/**\"",
"clean": "rimraf build",
"prepublishOnly": "yarn run clean && yarn run build"
}
}