forked from birdwingo/react-native-reanimated-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.53 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.53 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@birdwingo/react-native-reanimated-graph",
"version": "1.1.4",
"description": "The react-native-reanimated-graph package is a powerful and versatile library designed to empower developers with the ability to create stunning and interactive graphs and charts in their React Native applications. Leveraging the potential of React Native and Reanimated 3, this package offers an optimized and performant solution for rendering dynamic graphs that respond seamlessly to user interactions.",
"main": "src/index.tsx",
"source": "src/index.tsx",
"scripts": {
"prepare": "husky install",
"build": "tsc -p tsconfig.json",
"release": "standard-version",
"test": "jest --coverage"
},
"repository": "https://github.com/birdwingo/react-native-reanimated-graph.git",
"keywords": [
"react-native",
"android",
"ios",
"react",
"react-native-reanimated",
"reanimated",
"svg",
"react-native-svg",
"chart",
"charts",
"graph",
"graphs",
"animated",
"animation",
"performance"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/birdwingo/react-native-reanimated-graph/issues"
},
"homepage": "https://github.com/birdwingo/react-native-reanimated-graph#readme",
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.70.0",
"react-native-gesture-handler": ">=2.10.0",
"react-native-reanimated": ">=2.12.0",
"react-native-svg": ">=13.6.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@testing-library/jest-native": "^5.4.2",
"@testing-library/react-native": "^12.1.3",
"@tsconfig/react-native": "^3.0.0",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.16",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-airbnb-typescript": "^16.1.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"react-test-renderer": "^18.2.0",
"standard-version": "^9.5.0",
"typescript": "^5.1.6"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testMatch": [
"<rootDir>/tests/*.test.js"
],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect",
"<rootDir>/jest.setup.js"
],
"setupFiles": [
"./node_modules/react-native-gesture-handler/jestSetup.js"
],
"verbose": true
}
}