-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.12 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "react-native-svg-charts",
"version": "5.4.0",
"private": false,
"description": "Customizable charts (Line, Bar, Area, Pie, Circle, Progress) for React Native",
"main": "lib/module/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.js",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"storybook": "storybook start -p 7008",
"eslint": "./node_modules/.bin/eslint .",
"prepare": "bob build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"lint-staged": {
"*.js": "eslint"
},
"keywords": [
"react-native",
"react-component",
"react-native-component",
"react",
"mobile",
"ios",
"android",
"vector",
"charts",
"chart",
"d3"
],
"author": {
"name": "Jesper Lekland",
"email": "jesper.lekland@push2prod.se"
},
"homepage": "https://github.com/JesperLekland/react-native-svg-charts",
"bugs": {
"url": "https://github.com/JesperLekland/react-native-svg-charts/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/JesperLekland/react-native-svg-charts.git"
},
"license": "MIT",
"dependencies": {
"d3-array": "^1.2.0",
"d3-interpolate-path": "2.0.0",
"d3-scale": "^1.0.6",
"d3-shape": "^1.0.6",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": ">=16.0.0-alpha.12",
"react-native": ">=0.46.0",
"react-native-svg": ">=6.0.0"
},
"devDependencies": {
"@react-native-community/bob": "^0.10.0",
"@storybook/addon-actions": "^3.2.14",
"@storybook/addon-knobs": "^3.2.14",
"@storybook/addon-links": "^3.2.14",
"@storybook/react-native": "^3.2.14",
"babel-eslint": "^7.2.3",
"babel-jest": "20.0.1",
"babel-preset-react-native": "1.9.1",
"date-fns": "^1.28.5",
"eslint": "^4.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-native": "^2.3.2",
"eslint-plugin-standard": "^3.0.1",
"husky": "^3.0.0",
"jest": "20.0.1",
"lint-staged": "^7.1.3",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react": "16.2.0",
"react-dom": ">=16.0.0-alpha.12",
"react-native": "0.52.2",
"react-native-svg": "^6.2.1",
"react-test-renderer": "16.0.0-alpha.6"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/lib/"
]
},
"files": [
"src",
"lib"
],
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"module"
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
]
}