generated from maxgfr/rn-simple-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 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
{
"name": "huge-async-storage",
"description": "A wrapper of AsyncStorage that allows you to store huge data",
"version": "1.0.17",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"test": "jest --passWithNoTests",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"release": "semantic-release"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@testing-library/jest-native": "^5.3.0",
"@testing-library/react-native": "^11.5.0",
"@tsconfig/react-native": "^2.0.2",
"@types/jest": "^26.0.23",
"@types/react": "^18.0.21",
"@types/react-native": "^0.73.0",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"babel-jest": "^26.6.3",
"eslint": "^7.32.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "0.77.0",
"react": "18.3.1",
"react-native": "0.78.0",
"react-test-renderer": "18.3.1",
"semantic-release": "^19.0.5",
"typescript": "^4.8.3"
},
"keywords": [
"react-native",
"react",
"native",
"async-storage",
"storage",
"huge"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"author": "maxgfr",
"license": "MIT",
"homepage": "https://github.com/maxgfr/huge-async-storage",
"repository": {
"type": "git",
"url": "https://github.com/maxgfr/huge-async-storage"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.11"
}
}