-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "rn-sound",
"version": "0.8.2",
"description": "React Native module for playing sound clips on iOS and Android",
"main": "lib/sound.js",
"scripts": {
"prepublish": "npm run build",
"lint": "eslint src test",
"test": "mocha --compilers js:test/mocha_compiler.js --recursive",
"test:watch": "npm test -- --watch",
"build:lib": "babel src --out-dir lib",
"build": "npm run lint && npm run test && npm run build:lib"
},
"files": [
"lib",
"android",
"RNSound",
"RNSound.xcodeproj"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RinconStrategies/react-native-sound.git"
},
"keywords": [
"react-native",
"react-component",
"sound",
"audio"
],
"author": "Charles King <[email protected]> (http://rinconstrategies.io)",
"license": "MIT",
"peerDependencies": {
"react-native": ">=0.26.2",
"react": ">=15.0.2"
},
"devDependencies": {
"chai": "*",
"dirty-chai": "^1.2.2",
"mocha": "2.5.3",
"eslint-plugin-mocha": "~3.0.0",
"eslint": "^2.11.1",
"babel-cli": "^6.8.0",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.2",
"babel-preset-es2015": "^6.5.0"
}
}