forked from zmxv/react-native-sound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "react-native-sound",
"version": "0.11.0",
"description": "React Native module for playing sound clips on iOS, Android, and Windows",
"main": "sound.js",
"typings": "index.d.ts",
"repository": "zmxv/react-native-sound",
"keywords": [
"react-native",
"sound",
"audio",
"ios",
"android",
"windows"
],
"author": "Zhen Wang <[email protected]> (http://blog.zmxv.com)",
"license": "MIT",
"peerDependencies": {
"react-native": ">=0.8.0"
},
"scripts": {
"clang-format": "node scripts/clang-format.js",
"clang-format:check": "node scripts/clang-format.js --check"
},
"devDependencies": {
"glob": "^7.1.4",
"promisify-child-process": "^3.1.1"
},
"files": [
"**/*.@(js|ts)",
"*.podspec",
"android/build.gradle",
"android/src/**/*.@(java|xml)",
"RNSound.xcodeproj/project.pbxproj",
"RNSound.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
"RNSound/**/*.@(h|m)",
"windows/RNSoundModule/**/*.@(sln|json|xml|csproj)",
"windows/RNSoundModule/**/*.cs",
"!scripts"
]
}