forked from stowball/react-native-svg-icon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1 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
{
"name": "react-native-svg-icon",
"version": "0.4.0",
"description": "A simple, but flexible SVG icon component for React Native",
"main": "lib/index.js",
"watch": {
"build": "src/**/*.*"
},
"scripts": {
"build": "babel src -d lib",
"watch": "npm-watch",
"test": "echo \"Error: no test specified\" && exit 0"
},
"author": "Matt Stow <[email protected]>",
"homepage": "http://mattstow.com",
"license": "MIT",
"repository": "https://github.com/stowball/react-native-svg-icon.git",
"keywords": [
"react",
"react-native",
"react-component",
"svg",
"icon",
"ui",
"es6"
],
"dependencies": {
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.0",
"npm-watch": "^0.1.6",
"react": "^15.4.0",
"react-native": "^0.38.0",
"react-native-svg": "^4.4.0"
},
"peerDependencies": {
"react-native": ">=0.38",
"react-native-svg": "4.x"
}
}