This repository has been archived by the owner on Sep 15, 2023. It is now read-only.
forked from oblador/react-native-vector-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.93 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "react-native-vector-icons",
"version": "6.6.0",
"description": "Customizable Icons for React Native with support for NavBar/TabBar/ToolbarAndroid, image source and full styling.",
"main": "dist/index.js",
"bin": {
"fa5-upgrade": "./bin/fa5-upgrade.sh",
"generate-icon": "./bin/generate-icon.js"
},
"scripts": {
"test": "eslint index.js {bin,lib}/*.js",
"format": "prettier index.js *.md {bin,lib,directory,Examples}/**/*.js --write",
"prepublish": "npm run build-web && npm run build-flow",
"build": "./scripts/build-icons.sh",
"build-web": "rm -rf ./dist && babel *.js --out-dir ./dist && babel lib --out-dir ./dist/lib && cp -R ./glyphmaps ./dist/glyphmaps",
"build-flow": "./scripts/build-flow.sh",
"build-antd": "./scripts/antdesign.sh",
"build-entypo": "./scripts/entypo.sh",
"build-evilicons": "./scripts/evilicons.sh",
"build-fontawesome": "./scripts/fontawesome.sh",
"build-fontawesome5": "./scripts/fontawesome5.sh",
"build-fontisto": "./scripts/fontisto.sh",
"build-feather": "./scripts/feather.sh",
"build-foundation": "./scripts/foundation.sh",
"build-ionicons": "./scripts/ionicons.sh",
"build-materialicons": "./scripts/materialicons.sh",
"build-materialcommunityicons": "./scripts/materialcommunityicons.sh",
"build-octicons": "./scripts/octicons.sh",
"build-zocial": "./scripts/zocial.sh",
"build-simplelineicons": "./scripts/simplelineicons.sh"
},
"keywords": [
"react-native",
"react-component",
"react-native-component",
"react",
"mobile",
"ios",
"android",
"osx",
"windows",
"macos",
"ui",
"icon",
"icons",
"vector",
"retina",
"font"
],
"author": {
"name": "Joel Arvidsson",
"email": "[email protected]"
},
"homepage": "https://github.com/oblador/react-native-vector-icons",
"bugs": {
"url": "https://github.com/oblador/react-native-vector-icons/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/oblador/react-native-vector-icons.git"
},
"license": "MIT",
"rnpm": {
"assets": [
"Fonts"
]
},
"dependencies": {
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"yargs": "^15.0.2"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@mdi/font": "^4.0.96",
"babel-eslint": "^10.0.3",
"eslint": "^6.2.1",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"evil-icons": "^1.10.1",
"feather-icons": "^4.21.0",
"font-awesome": "^4.6.3",
"fontisto": "^3.0.4",
"ionicons": "^4.0.0",
"material-design-icons": "^3.0.1",
"metro-react-native-babel-preset": "^0.57.0",
"octicons": "^8.4.1",
"prettier": "^1.19.1"
}
}