forked from doublesymmetry/react-native-track-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.62 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
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "react-native-track-player",
"version": "3.2.0",
"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",
"format": "prettier --write src",
"types": "tsc --noEmit true",
"prepare": "yarn build && husky install",
"example": "yarn --cwd example",
"pods": "cd example/ios && pod install",
"bootstrap": "yarn example && yarn && yarn pods",
"prepublishOnly": "yarn lint",
"preversion": "yarn lint",
"version": "yarn format && git add -A src && yarn changelog && git add CHANGELOG.md",
"postversion": "if [[ ${npm_package_version} != *'nightly'* ]]; then yarn publish:git && yarn publish:npm; fi",
"ci:lint": "eslint src --max-warnings=0",
"ci:format": "prettier --check src",
"changelog": "conventional-changelog -p angular -s -i CHANGELOG.md -r 1",
"publish:git": "git push && git push --tags",
"publish:npm": "yarn prepare && npm publish --access public"
},
"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/doublesymmetry/react-native-track-player.git"
},
"bugs": {
"url": "https://github.com/doublesymmetry/react-native-track-player/issues"
},
"peerDependencies": {
"react": ">=16.8.6",
"react-native": ">=0.60.0-rc.2",
"react-native-windows": ">=0.63.0"
},
"peerDependenciesMeta": {
"react-native-windows": {
"optional": true
}
},
"devDependencies": {
"@types/react-native": "^0.64.5",
"@typescript-eslint/eslint-plugin": "^5.36.0",
"@typescript-eslint/parser": "^5.36.0",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.23.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"prettier": "^2.7.1",
"rimraf": "^2.6.2",
"typescript": "^4.8.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}