-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
executable file
·65 lines (65 loc) · 1.69 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
{
"name": "@xmartlabs/react-native-line",
"description": "React Native Line wrapper",
"author": "XmartLabs <hi@xmartlabs.com>",
"contributors": [
"Emiliano Botti <emiliano@xmartlabs.com>",
"Joaquin Aguirre <joaquin.aguirre@xmartlabs.com>",
"Santiago Fernandez <santiagofm@xmartlabs.com>",
"Nicolás Hernández <nicolas@xmartlabs.com>",
"Marco Fiorito <marco@xmartlabs.com>"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "2.2.0",
"homepage": "https://github.com/xmartlabs/react-native-line#readme",
"keywords": [
"react-native",
"react",
"simple",
"line",
"social login",
"auth"
],
"license": "MIT",
"private": false,
"scripts": {
"prepare": "yarn run build",
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"build": "tsc",
"dev": "tsc --watch",
"test:ts": "tsc --noEmit"
},
"peerDependencies": {
"react": "^16.0",
"react-native": ">=0.61.1"
},
"devDependencies": {
"@react-native-community/eslint-config": "0.0.5",
"@types/react-native": "0.60.25",
"@typescript-eslint/eslint-plugin": "2.12.0",
"@typescript-eslint/parser": "2.12.0",
"eslint": "6.5.1",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-simple-import-sort": "5.0.1",
"eslint-plugin-sort-keys-fix": "1.1.0",
"prettier": "1.19.1",
"typescript": "3.9.6"
},
"repository": {
"type": "git",
"url": "ssh:git@github.com:xmartlabs/react-native-line.git"
},
"files": [
"dist/",
"src/",
"android",
"ios",
"RNLine.podspec",
"README.md"
]
}