forked from jasancheg/react-native-svgx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.64 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.64 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
{
"name": "@delightfulstudio/react-native-svgson",
"version": "0.0.1",
"description": "Render SVG from a JSON definition generated by https://github.com/elrumordelaluz/svgson",
"main": "lib/react-native-svgson.js",
"scripts": {
"eslint": "node_modules/eslint/bin/eslint.js lib/",
"test": "yarn eslint && yarn jest",
"jest": "jest"
},
"repository": "github:DelightfulStudio/react-native-svgson",
"contributors": [
{
"name": "Delightful Studio",
"email": "hello@delightful.studio"
},
{
"name": "Jose Antonio Sanchez",
"email": "jasancheg@gmail.com"
}
],
"keywords": [
"react",
"native",
"json",
"svg",
"svgson",
"android",
"ios"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/DelightfulStudio/react-native-svgson/issues"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-jest": "^23.4.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react-native": "^4.0.0",
"babel-register": "^6.26.0",
"enzyme": "^3.1.1",
"eslint": "^5.1.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"jest-cli": "^23.4.0",
"jest-react-native": "^18.0.0",
"react": "^16.1.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.1.0",
"react-native": "^0.50.3",
"react-test-renderer": "^16.1.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "jest-react-native"
},
"dependencies": {}
}