-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "react-native-web-cache",
"version": "0.5.0",
"description": "An LRU cache built with React Native in mind",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": "https://github.com/hphothong/react-native-web-cache.git",
"author": "Hayden Phothong <[email protected]>",
"keywords": [
"react",
"react-native",
"cache",
"context",
"request"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest",
"cover": "jest --coverage && coveralls < coverage/lcov.info",
"lint": "eslint .",
"fix:lint": "eslint . --fix",
"check:type": "tsc --noEmit"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"babel": "^6.23.0",
"babel-jest": "^26.6.3",
"coveralls": "^3.1.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"typescript": "^4.0.5"
}
}