forked from nstudio/nativescript-audio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.57 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
{
"name": "nativescript-audio",
"version": "2.0.5",
"description": "NativeScript plugin to record and play audio.",
"main": "audio.js",
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"android": "2.2.0",
"ios": "2.2.1"
}
},
"scripts": {
"build": "tsc",
"demo.ios": "npm run preparedemo; cd demo; tns emulate ios",
"demo.android": "npm run preparedemo; cd demo; tns emulate android",
"preparedemo": "npm run build; cd demo; tns plugin remove nativescript-audio; tns plugin add ..; tns install",
"setup": "cd demo; npm install; cd ..; npm run build; cd demo; tns plugin add ..; cd .."
},
"repository": {
"type": "git",
"url": "https://github.com/bradmartin/nativescript-audio.git"
},
"keywords": [
"NativeScript",
"JavaScript",
"TypeScript",
"Android",
"iOS",
"music",
"microphone",
"recorder",
"audio",
"bradmartin",
"nathanwalker"
],
"author": {
"name": "Brad Martin",
"email": "[email protected]"
},
"contributors": [
{
"name": "Nathan Walker",
"email": " [email protected]",
"url": "https://github.com/NathanWalker"
}
],
"bugs": {
"url": "https://github.com/bradmartin/nativescript-audio/issues"
},
"license": {
"type": "MIT",
"url": "https://github.com/bradmartin/nativescript-audio/blob/master/LICENSE"
},
"homepage": "https://github.com/bradmartin/nativescript-audio",
"readmeFilename": "README.md",
"devDependencies": {
"tns-platform-declarations": "^2.0.0",
"typescript": "^1.8.10"
}
}