-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 841 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
{
"name": "@react-x/svg",
"version": "3.4.1",
"description": "Cross-platform SVG support for React and React Native.",
"license": "MIT",
"author": "Mark Miyashita <[email protected]>",
"homepage": "https://github.com/negativetwelve/react-x",
"repository": "https://github.com/negativetwelve/react-x/tree/master/components/svg",
"keywords": [
"react",
"react-native",
"react-x"
],
"main": "build/SVG",
"files": [
"build"
],
"dependencies": {
"prop-types": "15.7.2",
"react-native-svg": "^6.3.1"
},
"peerDependencies": {
"react": ">=16.8.3",
"react-dom": ">=16.8.3",
"react-native": ">=0.59.8"
},
"scripts": {
"build": "babel src --out-dir build --ignore \"**/__tests__/**\"",
"clean": "rimraf build",
"prepublishOnly": "yarn run clean && yarn run build"
}
}