-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "react-native-twemojis",
"version": "1.0.1",
"description": "Replace emojis with Twemojis in your next React Native app.",
"main": "src/index.ts",
"repository": "git@github.com:tomekkleszcz/react-native-twemojis.git",
"author": "tomekkleszcz <tomekkleszcz@icloud.com>",
"license": "MIT",
"private": false,
"keywords": [
"react",
"native",
"twemoji",
"twemojis",
"emoji",
"emojis",
"replace"
],
"scripts": {
"lint": "./node_modules/.bin/eslint ./src/ --ext .js,.jsx,.ts,.tsx",
"prepublish": "tsc"
},
"devDependencies": {
"@types/react-native": "^0.63.42",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.16.0",
"typescript": "^4.1.3"
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-native": ">= 0.59.0"
},
"dependencies": {
"react-string-replace": "^0.4.4"
}
}