-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
78 lines (78 loc) · 2.47 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
{
"name": "@fortawesome/react-native-fontawesome",
"version": "0.3.2",
"description": "Official React Native component for Font Awesome",
"main": "index.js",
"scripts": {
"test": "jest --forceExit",
"lint": "eslint src",
"dist:watch": "babel --watch --config-file ./babel.dist.config.js src --ignore src/components/__tests__ --out-dir dist",
"dist": "babel --config-file ./babel.dist.config.js src --ignore src/components/__tests__ --ignore src/components/__fixtures__ --out-dir dist",
"set.rnsvg": "yarn upgrade react-native-svg@$RNSVG_VERSION"
},
"types": "index.d.ts",
"homepage": "https://github.com/FortAwesome/react-native-fontawesome",
"repository": {
"type": "git",
"url": "https://github.com/FortAwesome/react-native-fontawesome.git"
},
"contributors": [
"Travis Chase <[email protected]>",
"Rob Madole <[email protected]>",
"Mike Wilkerson <[email protected]>",
"Dizy <[email protected]>",
"David Martin <github.com/iamdavidmartin>",
"Jeremy <github.com/puremana>",
"Michael Schonfeld <github.com/schonfeld>",
"Ádám Gólya <github.com/golya>",
"Edward Emanuel <github.com/ej2>",
"Jason Lundien <github.com/jasonlundien>",
"Greg Marut <github.com/gregmarut>"
],
"license": "MIT",
"peerDependencies": {
"@fortawesome/fontawesome-svg-core": "~1 || ~6",
"react-native": ">= 0.67",
"react-native-svg": ">= 11.x"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@babel/runtime": "^7.7.6",
"@fortawesome/fontawesome-svg-core": "^6",
"babel-core": "^7.0.0-bridge",
"babel-jest": "^24.9.0",
"eslint": "^8.16.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"jest": "^28.1.0",
"metro-react-native-babel-preset": "^0.57.0",
"react": "^17 || ^18",
"react-native": "^0.68.0",
"react-native-svg": "^12.3.0",
"react-test-renderer": "^17"
},
"dependencies": {
"humps": "^2.0.1",
"prop-types": "^15.7.2"
},
"files": [
"index.js",
"index.d.ts",
"dist/converter.js",
"dist/logger.js",
"dist/components/FontAwesomeIcon.js"
],
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/examples"
]
}
}