forked from LunatiqueCoder/react-native-media-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.13 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-native-media-console",
"version": "2.0.2",
"description": "A media player for the react-native-video component",
"license": "MIT",
"source": "src/index",
"main": "lib/commonjs/index.js",
"types": "lib/typescript/index.d.ts",
"keywords": [
"react-native",
"react-native-video",
"react video controls",
"react video player"
],
"bugs": {
"url": "https://github.com/criszz77/react-native-media-console/issues"
},
"homepage": "https://github.com/criszz77/react-native-media-console",
"author": "Ovidiu Cristescu (https://github.com/criszz77)",
"repository": "git@github.com:criszz77/react-native-video-controller.git",
"scripts": {
"lint": "eslint ./src",
"test": "echo \"No test specified\" && exit 1",
"prepare": "bob build",
"release": "release-it"
},
"dependencies": {},
"peerDependencies": {
"react-native": ">=0.46.0",
"react-native-video": ">=2.0.0"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.0.1",
"@types/react-native-video": "^5.0.12",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^7.14.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.3",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-native": "npm:react-native-tvos@0.68.1-1",
"react-native-builder-bob": "^0.18.2",
"react-native-video": "^5.2.0",
"release-it": "^15.4.1",
"typescript": "^4.6.2"
},
"react-native": "src/index.ts",
"module": "lib/module/index.js",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__"
],
"react-native-builder-bob": {
"source": "./src",
"output": "./lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
}
},
"eslintIgnore": [
"node_modules/",
"./lib/"
]
}