This repository has been archived by the owner on Feb 16, 2023. It is now read-only.
forked from expo/vector-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.66 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
{
"name": "@expo/vector-icons",
"sideEffects": false,
"version": "10.0.1",
"description": "Built-in support for popular icon fonts and the tooling to create your own Icon components from your font and glyph map. This is a wrapper around react-native-vector-icons to make it compatible with Expo.",
"main": "build/IconsLazy.js",
"module": "build/Icons.js",
"types": "build/Icons.d.ts",
"scripts": {
"copy-vendor": "cp -R src/vendor/ build/vendor/",
"generate-lazy": "expo-module babel --config-file ./babel.config.build.js --source-maps --out-file build/IconsLazy.js build/Icons.js",
"build": "EXPO_NONINTERACTIVE=1 expo-module build && npm run generate-lazy && npm run copy-vendor",
"build:dev": "expo-module build",
"clean": "expo-module clean",
"lint": "eslint tools",
"test": "expo-module test",
"prepare": "expo-module prepare && npm run generate-lazy && npm run copy-vendor",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module"
},
"repository": {
"type": "git",
"url": "https://github.com/expo/vector-icons.git"
},
"keywords": [
"expo"
],
"author": "Brent Vatne",
"contributors": [
"Evan Bacon <[email protected]> (https://github.com/evanbacon)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/vector-icons/issues"
},
"jest": {
"preset": "expo-module-scripts"
},
"homepage": "https://expo.github.io/vector-icons",
"unimodulePeerDependencies": {
"expo-font": "*"
},
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"@types/react-native": "~0.57",
"expo-font": "^3.0.1",
"expo-module-scripts": "^1.0.0"
}
}