-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
38 lines (38 loc) · 1.19 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
{
"name": "react-native-cache",
"version": "2.0.3",
"description": "LRU cache built on AsyncStorage for react-native",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "rm -rf dist && tsc",
"prepublish": "npm test",
"test": "npm run build && jest --coverage"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/timfpark/react-native-cache.git"
},
"author": "Tim Park",
"license": "MIT",
"bugs": {
"url": "https://github.com/timfpark/react-native-cache/issues"
},
"homepage": "https://github.com/timfpark/react-native-cache#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "27.0.3",
"@types/node": "^13.9.5",
"husky": "^4.2.3",
"jest": "27.4.5",
"ts-jest": "27.1.2",
"ts-node-dev": "^1.0.0-pre.44",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.13.4"
}
}