This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathpackage.json
62 lines (62 loc) · 1.95 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
{
"name": "victory-native",
"version": "0.10.0",
"description": "Shared libraries and components for Victory",
"main": "lib/index.js",
"files": [
"lib",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/FormidableLabs/victory-native.git"
},
"author": "Formidable",
"license": "MIT",
"bugs": {
"url": "https://github.com/FormidableLabs/victory-native/issues"
},
"homepage": "https://github.com/FormidableLabs/victory-native#readme",
"scripts": {
"start": "./node_modules/react-native/packager/packager.sh start --reset-cache --projectRoots `pwd`,`pwd`/demo",
"demo:ios": "react-native run-ios --project-path demo/ios",
"lint": "eslint test/spec/**/*.js lib/**/*.js demo/**/*.js",
"test": "mocha --compilers test/compiler.js --recursive test/spec/*.js"
},
"devDependencies": {
"@jonny/react-native-mock": "^0.4.0",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-plugin-module-resolver": "^2.5.0",
"babel-preset-react-native": "^1.9.0",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"enzyme": "^2.8.2",
"eslint": "^2.0.0",
"eslint-config-formidable": "^2.0.1",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.10.3",
"mocha": "^3.0.2",
"react": "16.0.0-alpha.12",
"react-addons-test-utils": "^15.5.1",
"react-dom": "16.0.0-alpha.12",
"react-native": "^0.45.0",
"react-native-mock": "^0.3.1",
"react-native-svg": "^5.2.0",
"react-native-svg-mock": "^1.0.2",
"react-test-renderer": "16.0.0-alpha.12"
},
"peerDependencies": {
"react": "16.0.0-alpha.12",
"react-native": "^0.45.1",
"react-native-svg": "^5.2.0"
},
"dependencies": {
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"victory-chart": "git://github.com/formidablelabs/victory-chart#support-native-polar",
"victory-core": "^16.0.0",
"victory-pie": "^11.0.0"
}
}