forked from bakerface/react-native-svg-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 977 Bytes
/
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
{
"name": "react-native-svg-web",
"version": "1.0.1",
"description": "A web replacement for react-native-svg",
"main": "index.js",
"author": "Chris Baker <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/bakerface/react-native-svg-web#readme",
"keywords": [
"react",
"native",
"svg",
"web"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bakerface/react-native-svg-web.git"
},
"bugs": {
"url": "https://github.com/bakerface/react-native-svg-web/issues"
},
"scripts": {
"test": "xo"
},
"xo": {
"space": true,
"env": [
"browser"
],
"rules": {
"object-curly-spacing": [
"error",
"always"
]
}
},
"peerDependencies": {
"react": ">=16.13.0"
},
"dependencies": {
"prop-types": "^15.5.10"
},
"devDependencies": {
"react-native-web": "^0.12.2",
"react": "^16.13.0",
"xo": "^0.18.2"
}
}