-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
59 lines (59 loc) · 1.42 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
{
"name": "react-native-fbads",
"version": "7.1.0",
"description": "Native Facebook Ads for React Native",
"repository": {
"type": "git",
"url": "https://github.com/callstack/react-native-fbads"
},
"homepage": "https://github.com/callstack/react-native-fbads",
"main": "dist/lib/index.js",
"typings": "dist/types/index.d.ts",
"directories": {
"example": "example"
},
"scripts": {
"build:plugin": "tsc --build plugin",
"clean:plugin": "expo-module clean plugin",
"lint:plugin": "eslint plugin/src/*",
"prepare": "npm run build:plugin",
"tsc": "tsc --project .",
"lint": "tslint --project ."
},
"author": "Suraj Tiwari <surajtiwari020@gmail.com>",
"license": "MIT",
"peerDependencies": {
"react-native": "*"
},
"dependencies": {
"@expo/config-plugins": "^4.0.4",
"fbemitter": "^2.1.1"
},
"devDependencies": {
"@types/fbemitter": "^2.0.32",
"@types/react-native": "^0.57.4",
"expo-module-scripts": "^2.0.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^4.5.5"
},
"keywords": [
"react-native",
"facebook",
"Audience Network",
"Native ads"
],
"files": [
"android",
"ios",
"src",
"LICENSE",
"package.json",
"dist",
"react-native.config.js",
"ReactNativeAdsFacebook.podspec",
"app.plugin.js",
"plugin/build/"
]
}