-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
51 lines (51 loc) · 1.23 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-true-sight",
"description": "A cross-platform video player with customizable controls for React Native.",
"version": "2.0.0",
"license": "MIT",
"author": {
"name": "Andréas HANSS",
"url": "https://www.linkedin.com/in/andreas-hanss/"
},
"repository": {
"type": "git",
"url": "https://github.com/ScreamZ/react-native-true-sight.git"
},
"bugs": {
"url": "https://github.com/ScreamZ/react-native-true-sight/issues"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"build:watch": "tsc --watch",
"prepublishOnly": "tsc"
},
"peerDependencies": {
"@react-native-community/slider": "^3.0.3",
"react": "*",
"react-native": ">=0.60.0",
"react-native-video": "^5.0.0"
},
"devDependencies": {
"@react-native-community/slider": "^3.0.3",
"@types/react": "^16.9.49",
"@types/react-native": "^0.63.17",
"@types/react-native-video": "^5.0.1",
"jest": "^22.2.2",
"tslint": "^5.9.1",
"typescript": "^4.0.2"
},
"jest": {
"preset": "react-native"
},
"keywords": [
"react",
"react-native",
"video",
"video-player",
"customizable",
"cross-platform"
]
}