forked from timfpark/react-native-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.46 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
{
"name": "@duell10111/react-native-cache",
"version": "2.1.4",
"description": "LRU cache built on AsyncStorage for react-native",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts --fix",
"test": "yarn run build && jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/Duell10111/react-native-cache.git"
},
"author": "Duell10111",
"license": "MIT",
"bugs": {
"url": "https://github.com/Duell10111/react-native-cache/issues"
},
"homepage": "https://github.com/Duell10111/react-native-cache#readme",
"devDependencies": {
"@babel/preset-typescript": "7.18.6",
"@types/jest": "26.0.24",
"@types/node": "16.18.10",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "35.5.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "3.4.1",
"husky": "7.0.4",
"jest": "27.5.1",
"prettier": "2.8.1",
"ts-jest": "27.1.5",
"ts-node-dev": "1.1.8",
"typescript": "4.9.4"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": ">=1.15.5",
"react-native-mmkv": ">=1.3.2"
}
}