forked from react-native-async-storage/async-storage
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
142 lines (142 loc) · 3.71 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "@react-native-oh-tpl/async-storage",
"version": "1.21.0-0.2.2",
"description": "Asynchronous, persistent, key-value storage system for React Native.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.ts",
"types": "lib/typescript/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"harmony": {
"alias": "@react-native-async-storage/async-storage",
"codegenConfig": {
"version": 2,
"specPaths": [
"./src"
]
}
},
"files": [
"harmony/",
"jest/",
"lib/",
"src/"
],
"author": "Krzysztof Borowy <hello@krizzu.dev>",
"contributors": [
"Evan Bacon <bacon@expo.io> (https://github.com/evanbacon)",
"Tommy Nguyen <4123478+tido64@users.noreply.github.com> (https://github.com/tido64)"
],
"homepage": "https://github.com/react-native-async-storage/async-storage#readme",
"license": "MIT",
"keywords": [
"react-native",
"react native",
"async storage",
"asyncstorage",
"storage"
],
"repository": {
"type": "git",
"url": "https://github.com/react-native-oh-library/async-storage.git",
"directory": "packages/default-storage-backend"
},
"scripts": {
"prepare": "bob build",
"test": "concurrently -n lint,ts yarn:test:lint yarn:test:ts",
"test:lint": "eslint $(git ls-files '*.js' '*.ts' '*.tsx')",
"test:ts": "tsc"
},
"installConfig": {
"hoistingLimits": "workspaces"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.21.0",
"merge-options": "^3.0.4"
},
"peerDependencies": {
"react-native": "^0.0.0-0 || >=0.60 <1.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@types/lodash": "^4.14.184",
"@types/mocha": "^10.0.1",
"@types/react": "^18.0.0",
"@wdio/appium-service": "^8.24.0",
"@wdio/cli": "^8.24.0",
"@wdio/local-runner": "^8.24.0",
"@wdio/mocha-framework": "^8.11.0",
"@wdio/spec-reporter": "^8.24.0",
"appium": "^2.4.1",
"appium-uiautomator2-driver": "^2.34.1",
"appium-xcuitest-driver": "^5.9.1",
"concurrently": "^8.2.2",
"eslint": "^8.54.0",
"expo": "^48.0.0",
"lodash": "^4.17.21",
"prettier": "2.8.8",
"react": "18.2.0",
"react-dom": "^18.2.0",
"react-native": "^0.71.0",
"react-native-builder-bob": "^0.18.0",
"react-native-codegen": "^0.71.5",
"react-native-macos": "^0.71.0",
"react-native-test-app": "^2.5.33",
"react-native-web": "~0.18.10",
"react-native-windows": "^0.71.0",
"react-test-renderer": "18.2.0",
"semantic-release": "^19.0.0",
"typescript": "^5.3.0",
"webdriverio": "^8.24.0"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]"
}
]
]
},
"codegenConfig": {
"name": "rnasyncstorage",
"type": "modules",
"jsSrcsDir": "./src",
"android": {
"javaPackageName": "com.reactnativecommunity.asyncstorage"
}
}
}