-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "react-native-reply",
"version": "1.0.9",
"description": "Easy @mentions, non-intrusive logic, BYO TextInput",
"files": [
"lib/**/*",
"src"
],
"main": "lib/index",
"types": "lib/index",
"scripts": {
"prepare": "yarn build",
"prepublishOnly": "yarn lint",
"preversion": "yarn lint",
"build": "tsc && cp src/*.js lib",
"format": "prettier --write \"src/**/*.tsx\"",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucasfeijo/react-native-reply.git"
},
"keywords": [
"react-native",
"reply",
"mentions",
"text-input",
"tags"
],
"author": "lucasfeijo",
"license": "MIT",
"bugs": {
"url": "https://github.com/lucasfeijo/react-native-reply/issues"
},
"homepage": "https://github.com/lucasfeijo/react-native-reply#readme",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/runtime": "^7.10.5",
"@types/react": "^16.9.23",
"@types/react-native": "^0.61.17",
"metro-react-native-babel-preset": "^0.56.0",
"prettier": "^1.19.1",
"react": "16.9.0",
"react-native": "0.59.10",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": "^16.8.6",
"react-native": ">=0.59.10"
}
}