forked from Notalib/nativescript-audioplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.44 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
{
"private": true,
"name": "@nota/nativescript-audioplayer",
"version": "6.3.1",
"description": "Fully featured AudioPlayer for NativeScript. Supports gap-less audio playlist playback with variable playback speed and native remote controls",
"scripts": {
"build.apk": "cd demo && tns build android --copy-to .",
"build": "cd src && npm i && tsc",
"ci.tslint": "npm i && tslint 'src/**/*.ts' 'demo/src/**/*.ts' --config './tslint.json' --exclude '**/node_modules/**'",
"clean": "cd demo && rimraf hooks node_modules platforms && cd ../src && rimraf node_modules",
"demo.android": "npm run demo.reset && cd demo && tns debug android --no-hmr",
"demo.ios": "npm run demo.reset && cd demo && tns debug ios --no-hmr",
"demo.reset": "rimraf demo/platforms src/platforms/android/nativescript_audioplayer.aar",
"format:check": "prettier -c --config ./.prettierrc.json 'src/*.ts' 'src/native-definitions/**/*.ts' 'demo/src/**/*.{ts,html,css,scss}'",
"format": "prettier --write --config ./.prettierrc.json 'src/*.ts' 'src/native-definitions/**/*.ts' 'demo/src/**/*.{ts,html,css,scss}'",
"gen.typings.ios": "cd demo && TNS_TYPESCRIPT_DECLARATIONS_PATH=\"$(pwd)/../gen-typings\" tns build ios",
"lint": "npm-run-all format:check tslint",
"test.android": "(cd src && npm i && npx tsc) && npm run tslint && cd demo && tns build android && tns test android --justlaunch",
"test.ios": "(cd src && npm i && npx tsc) && npm run tslint && cd demo && tns build ios && tns test ios --justlaunch",
"tslint": "(cd src && npm run tslint) && (cd demo && npm run tslint)",
"postinstall": "cd src && ([ \"$npm_config_refer\" = \"ci\" ] && npm ci || npm i)"
},
"repository": {
"type": "git",
"url": "https://github.com/Notalib/nativescript-audioplayer.git"
},
"keywords": [
"NativeScript",
"JavaScript",
"Android",
"iOS"
],
"author": {
"name": "Daniel Freiling",
"email": "[email protected]"
},
"contributors": [
{
"name": "Morten Sjøgren",
"email": "[email protected]",
"url": "https://mabs.dk"
}
],
"bugs": {
"url": "https://github.com/Notalib/nativescript-audioplayer/issues"
},
"homepage": "https://github.com/Notalib/nativescript-audioplayer",
"readmeFilename": "README.md",
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"tns-platform-declarations": "^6.4.0",
"typescript": "^3.7.5"
},
"dependencies": {}
}