This repository was archived by the owner on Feb 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.73 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.73 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
{
"name": "victory-pie-native",
"version": "2.0.0",
"description": "D3 pie & donut chart component for React Native",
"main": "lib/index.js",
"files": [
"lib",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/FormidableLabs/victory-pie-native.git"
},
"keywords": [
"d3",
"pie",
"donut",
"chart",
"react",
"react-native"
],
"author": "Vakhtang Sidamonidze",
"license": "MIT",
"bugs": {
"url": "https://github.com/FormidableLabs/victory-pie-native/issues"
},
"homepage": "https://github.com/FormidableLabs/victory-pie-native#readme",
"scripts": {
"start": "./node_modules/react-native/packager/packager.sh start --reset-cache --projectRoots `pwd`,`pwd`/demo",
"lint": "eslint test/spec/**/*.js lib/**/*.js",
"test": "mocha --compilers test/compiler.js --recursive test/spec/*.js"
},
"devDependencies": {
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-preset-react-native": "^1.9.0",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"enzyme": "^2.4.1",
"eslint": "^2.0.0",
"eslint-config-defaults": "^10.0.0-1",
"eslint-plugin-filenames": "^0.2.0",
"eslint-plugin-react": "^3.12.0",
"lodash.random": "^3.2.0",
"lodash.range": "^3.2.0",
"mocha": "^3.0.1",
"react": "^15.3.0",
"react-addons-test-utils": "^15.3.0",
"react-dom": "^15.3.0",
"react-native": "~0.38.0",
"react-native-mock": "^0.2.5",
"react-native-svg": "^4.1.0",
"react-native-svg-mock": "^1.0.2"
},
"peerDependencies": {
"react": "^15.3.0",
"react-native": "~0.38.0",
"react-native-svg": "^4.1.0"
},
"dependencies": {
"victory-core-native": "^4.0.0",
"victory-pie": "^7.2.0"
}
}