forked from charliesbot/react-native-media-controls
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.63 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.63 KB
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
{
"name": "react-native-media-controls",
"description": "A sweet UI to control your video and audio components",
"version": "1.1.1",
"author": {
"name": "Charlie L",
"email": "charliesbot@gmail.com"
},
"license": "Apache-2.0",
"scripts": {
"build": "babel src/ -d lib/ src/assets --out-dir lib/ --copy-files",
"clean": "rimraf lib",
"flow": "flow check ./",
"format": "eslint ./**/*.js --fix",
"lint": "eslint ./",
"lint-staged": "lint-staged",
"precommit": "lint-staged",
"prepublish": "yarn run clean && yarn run build",
"test": "yarn run lint"
},
"keywords": [
"react-native",
"ios",
"android",
"video",
"audio",
"media",
"control"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git@github.com:charliesbox/react-native-media-controls.git"
},
"dependencies": {
"react-native-slider": "^0.11.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-preset-flow": "^6.23.0",
"babel-preset-react-native": "^4.0.0",
"eslint": "^4.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-flowtype-errors": "^3.3.6",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-react-native": "^3.2.0",
"flow-bin": "^0.57.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "^1.9.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}