forked from georstat/react-native-image-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.82 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.82 KB
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
{
"name": "@georstat/react-native-image-cache",
"version": "2.5.0",
"access": "public",
"description": "React Native image file system caching for iOS and Android",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.ts",
"files": [
"src",
"lib"
],
"keywords": [
"react-native",
"ios",
"android",
"image-cache",
"cache",
"file system image cache"
],
"repository": "https://github.com/georstat/react-native-image-cache",
"author": "Efstathios Ntonas - George Bakogiannis - George Kallinikos",
"license": "MIT",
"bugs": {
"url": "https://github.com/georstat/react-native-image-cache/issues"
},
"homepage": "https://github.com/georstat/react-native-image-cache",
"scripts": {
"tsc": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"build": "bob build && yarn copy-dts",
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" lib/typescript",
"release": "release-it",
"example": "yarn --cwd example",
"prettier": "prettier \"**/*.{ts,tsx,js}\" --write",
"bootstrap": "yarn install && yarn example",
"prepare": "husky install"
},
"dependencies": {
"crypto-js": "^4.1.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@react-native-community/eslint-config": "^3.2.0",
"@release-it/conventional-changelog": "^5.1.1",
"@types/lodash": "^4.14.195",
"@types/react": "^18.2.11",
"@types/react-native": "^0.72.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"auto-changelog": "^2.4.0",
"copyfiles": "^2.4.1",
"eslint": "^8.42.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native-a11y": "^3.3.0",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"react": "18.2.0",
"react-native": "^0.71.10",
"react-native-builder-bob": "^0.20.4",
"react-native-file-access": "^3.0.3",
"react-native-reanimated": "3.1.0",
"release-it": "^15.11.0",
"typescript": "^5.1.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-reanimated": ">=2.2.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn typescript"
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}