forked from doublesymmetry/react-native-track-player
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 1.88 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
{
"name": "react-native-track-player",
"version": "2.1.2",
"description": "A fully fledged audio module created for music apps",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rimraf lib && tsc",
"lint": "eslint \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "yarn build",
"prepublishOnly": "yarn lint",
"preversion": "yarn lint",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*",
"ios/**/*",
"android/**/*",
"*.podspec"
],
"contributors": [
{
"name": "David Chavez",
"email": "[email protected]",
"url": "http://dcvz.io"
},
{
"name": "Guilherme Chaguri",
"email": "[email protected]",
"url": "http://guichaguri.com"
},
{
"name": "Dustin Bahr",
"email": "[email protected]"
}
],
"keywords": [
"react",
"react-native",
"track-player",
"audio-player",
"audio",
"player",
"music",
"controls",
"chromecast",
"android",
"ios",
"windows",
"hooks"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/react-native-kit/react-native-track-player.git"
},
"bugs": {
"url": "https://github.com/react-native-kit/react-native-track-player/issues"
},
"peerDependencies": {
"react": ">=16.8.6",
"react-native": ">=0.60.0-rc.2",
"react-native-windows": ">=0.63.0"
},
"devDependencies": {
"@types/react-native": "^0.60.0",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^1.17.0",
"rimraf": "^2.6.2",
"typescript": "^3.2.4"
}
}