-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 2.01 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
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
73
74
75
76
77
78
{
"name": "react-native-performance-stats",
"version": "0.2.3",
"description": "Get FPS, memory and CPU usage of your React Native app",
"react-native": "src/index",
"source": "src/index",
"types": "types.d.ts",
"files": [
"src",
"android",
"ios",
"react-native-performance-stats.podspec",
"types.d.ts",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"release": "release-it"
},
"keywords": [
"react-native",
"ios",
"android",
"fps",
"performance",
"stats",
"memory"
],
"repository": "https://github.com/skillnation/react-native-performance-stats",
"author": "Hanno J. Goedecke [email protected] (https://github.com/hannojg)",
"license": "MIT",
"bugs": {
"url": "https://github.com/skillnation/react-native-performance-stats/issues"
},
"homepage": "https://github.com/skillnation/react-native-performance-stats#readme",
"devDependencies": {
"@release-it/conventional-changelog": "^2.0.0",
"@types/react-native": "^0.67.8",
"release-it": "^14.2.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"codegenConfig": {
"libraries": [
{
"name": "RNPerformanceStatsSpec",
"type": "modules",
"jsSrcsDir": "src"
}
]
}
}