forked from digital-waterfall/react-native-media-suite
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.86 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
{
"name": "react-native-media-suite",
"version": "0.2.8",
"description": "A native media player with download capabilities. It was forked from react-native-media-kit.",
"main": "library/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier --write \"library/**/*.js\" \"TestVideo/library/**/*.js\"",
"lint": "eslint --fix \"library/**/*.js\" \"TestVideo/library/**/*.js\"",
"lint-ci": "eslint \"library/**/*.js\" \"TestVideo/library/**/*.js\"",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/digital-waterfall/react-native-media-suite"
},
"keywords": [
"video",
"drm",
"download",
"offline-storage",
"airplay",
"cast",
"chromecast",
"googlecast",
"ios",
"android",
"react-native",
"exoplayer",
"avplayer"
],
"author": "Digital Waterfall",
"license": "MIT",
"homepage": "https://github.com/digital-waterfall/react-native-media-suite#readme",
"dependencies": {
"lodash": "4.17.10",
"prop-types": "15.6.1",
"rn-multi-tenant-async-storage": "0.0.5"
},
"peerDependencies": {
"react": ">=16.3.1",
"react-native": ">=0.55.2"
},
"devDependencies": {
"eslint": "5.7.0",
"eslint-config-esnext": "3.0.0",
"eslint-config-prettier": "2.9.0",
"eslint-config-react-native": "3.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "21.22.0",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-react": "7.11.1",
"eslint-plugin-react-native": "3.3.0",
"husky": "1.1.2",
"lint-staged": "7.3.0",
"prettier": "1.14.3",
"react": "16.3.1",
"react-native": "0.55.2"
},
"lint-staged": {
"*.js": [
"prettier --write \"library/**/*.js\" \"TestVideo/library/**/*.js\"",
"eslint \"library/**/*.js\"",
"git add"
]
}
}