-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.43 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": "react-native-kakao-ad",
"version": "1.1.0",
"description": "Kakao-Ad SDK for react-native",
"homepage": "https://github.com/soundgym/react-native-kakao-ad",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Hyungu Kang <gusrn1423@naver.com>",
"license": "MIT",
"files": [
"android",
"ios",
"lib",
"react-native-kakao-ad.podspec",
"!.DS_Store",
"!.gradle",
"!.idea",
"!build",
"!gradle",
"!*.iml",
"!gradlew",
"!gradlew.bat",
"!local.properties",
"!project.xcworkspace",
"!xcshareddata",
"!xcuserdata"
],
"scripts": {
"build": "tsc",
"fix": "yarn fix:eslint && yarn fix:prettier",
"fix:eslint": "eslint --fix src --ext js,jsx,ts,tsx ",
"fix:prettier": "prettier --write \"src/**/*.{ts,tsx,js}\""
},
"devDependencies": {
"@types/react-native": "^0.62.11",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-native": "^0.62.2",
"typescript": "^3.9.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {}
}