forked from oblador/react-native-vector-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.5 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
{
"name": "react-native-vector-icons",
"version": "4.6.0",
"description": "Customizable Icons for React Native with support for NavBar/TabBar/ToolbarAndroid, image source and full styling.",
"main": "dist/index.js",
"bin": {
"generate-icon": "./bin/generate-icon.js"
},
"scripts": {
"test": "eslint index.js {bin,lib}/*.js",
"format": "prettier index.js {bin,lib,Examples/*}/*.js --write",
"prepublish": "npm run build-web",
"build": "./scripts/build-icons.sh",
"build-web": "rm -rf ./dist && babel ./{,lib}/*.js --out-dir ./dist && cp -R ./glyphmaps ./dist/glyphmaps",
"build-entypo": "./scripts/entypo.sh",
"build-evilicons": "./scripts/evilicons.sh",
"build-fontawesome": "./scripts/fontawesome.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.0.0",
"prop-types": "^15.5.10",
"yargs": "^8.0.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.0.0",
"babel-preset-react-native": "^4.0.0",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"evil-icons": "^1.8.0",
"font-awesome": "^4.6.3",
"ionicons": "^4.0.0",
"material-design-icons": "^3.0.1",
"@mdi/font": "^2.4.85",
"octicons": "^7.2.0",
"prettier": "^1.13.3"
}
}