-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.06 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.06 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
{
"name": "react-native-jank-tracker",
"version": "1.0.1-beta.12",
"files": [
"dist",
"ios",
"src",
"react-native-jank-tracker.podspec"
],
"directories": {
"example": "example",
"test": "test"
},
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"dev": "cd example && yarn start",
"ios": "cd example && yarn install && yarn ios",
"android": "cd example && yarn install && yarn android",
"build": "tsc && cp package.json dist/package.json",
"test": "jest",
"e2e": "detox test",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json}\"",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"beta:version": "npm version prerelease --preid=beta",
"beta:publish": "npm publish --tag beta",
"beta": "npm run beta:version && npm run beta:publish",
"sync:podspec": "node scripts/update-podspec.js",
"prepublishOnly": "npm run sync:podspec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zereight/react-native-jank-tracker.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zereight/react-native-jank-tracker/issues"
},
"homepage": "https://github.com/zereight/react-native-jank-tracker#readme",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"peerDependencies": {
"react": "19.0.0",
"react-native": "^0.79.2"
},
"devDependencies": {
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/react-native": "^12.0.0",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.0",
"@types/react-native": "^0.73.0",
"babel-jest": "^29.7.0",
"detox": "^20.0.0",
"eslint-plugin-prettier": "^5.3.1",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.7.0",
"metro-react-native-babel-preset": "^0.77.0",
"react-native": "0.79.2",
"react-test-renderer": "^19.0.0",
"ts-jest": "^29.3.2",
"typescript": "^5.8.3"
}
}