-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 921 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 921 Bytes
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
{
"name": "react-native-cache-storage",
"version": "0.0.4",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"test:unit": "jest test/unit",
"open:coverage": "npm test && google-chrome ./coverage/lcov-report/index.html",
"pre:build": "rm -rf ./lib",
"build": "npm run pre:build && tsc"
},
"keywords": [
"cache",
"storage",
"react-native"
],
"author": "Matheus Genteluci <mgenteluci97@gmail.com>",
"license": "MIT",
"devDependencies": {
"@react-native-community/async-storage": "^1.6.2",
"@types/jest": "^24.0.19",
"codecov": "^3.6.1",
"eslint": "^6.5.1",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
},
"dependencies": {
"moment": "^2.24.0"
},
"peerDependencies": {
"@react-native-community/async-storage": "^1.6.2",
"react-native": "^0.61.2"
}
}