-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
78 lines (78 loc) · 2.06 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": "@connectedcars/react-native-slide-charts",
"version": "1.0.5",
"description": "React Native Slide Charts uses react-native-svg, d3, and react-native-gesture-handler to create interactive charts.",
"homepage": "https://github.com/connectedcars/react-native-slide-charts",
"repository": {
"type": "git",
"url": "https://github.com/connectedcars/react-native-slide-charts"
},
"publishConfig": {
"access": "public"
},
"main": "src/Charts.ts",
"types": "src/react-native-slide-charts.d.ts",
"scripts": {
"test": "echo \"No test specified\"",
"lint": "eslint -c .eslintrc.json --ext .ts .",
"tsc": "tsc"
},
"keywords": [
"chart",
"graph",
"svg",
"react-native",
"react-component",
"react-native-component",
"react",
"mobile",
"ios",
"android",
"vector",
"charts",
"graphs",
"d3"
],
"author": "Connected Cars <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"files": [
"src"
],
"dependencies": {
"d3": "5.15.0",
"d3-interpolate-path": "2.1.1",
"d3-shape": "1.3.7",
"svg-path-properties": "0.5.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": ">1.1.0 <2",
"react-native-svg": ">=7.0.0 <12"
},
"devDependencies": {
"@babel/core": "7.8.7",
"@babel/runtime": "7.8.7",
"@react-native-community/eslint-config": "0.0.7",
"@types/d3": "5.7.2",
"@types/node": "13.13.4",
"@types/react": "16.8.2",
"@types/react-native": "0.63.50",
"@typescript-eslint/eslint-plugin": "2.24.0",
"@typescript-eslint/parser": "2.24.0",
"babel-jest": "25.1.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.19.0",
"jest": "24.9.0",
"metro-react-native-babel-preset": "0.58.0",
"prettier": "1.19.1",
"react": "16.9.0",
"react-native": "0.64.1",
"react-native-gesture-handler": "1.6.0",
"react-native-svg": "11.0.1",
"typescript": "4.2.2"
}
}