-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.83 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.83 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
{
"name": "react-native-lighthouse",
"version": "1.0.0",
"description": "Core Web Vitals performance measurement for React Native - measure TTFF, TTI, FID and calculate Lighthouse-style performance scores",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"files": [
"dist",
"src"
],
"sideEffects": false,
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"lint": "eslint src --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"react-native",
"performance",
"lighthouse",
"core-web-vitals",
"TTFF",
"TTI",
"FID",
"time-to-interactive",
"time-to-first-frame",
"first-input-delay",
"metrics",
"monitoring"
],
"author": "Indeed Engineering",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/indeedeng/react-native-lighthouse"
},
"bugs": {
"url": "https://github.com/indeedeng/react-native-lighthouse/issues"
},
"homepage": "https://github.com/indeedeng/react-native-lighthouse#readme",
"peerDependencies": {
"react": ">=17.0.0",
"react-native": ">=0.64.0"
},
"devDependencies": {
"@react-native/babel-preset": "^0.73.0",
"@testing-library/react-native": "^12.4.3",
"@types/jest": "^29.5.11",
"@types/react": "^18.2.45",
"@types/react-native": "^0.73.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"react": "18.2.0",
"react-native": "^0.73.0",
"react-test-renderer": "18.2.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}