-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
86 lines (86 loc) · 2.43 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
{
"name": "cordova-plugin-playlist",
"description": "A Cordova plugin for Android and iOS with native support for audio playlists, background support, and lock screen controls",
"version": "0.10.0",
"homepage": "https://github.com/Rolamix/cordova-plugin-playlist#readme",
"author": "Patrick <[email protected]>",
"license": "MIT",
"types": "./www/index.d.ts",
"main": "./www/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Rolamix/cordova-plugin-playlist.git"
},
"bugs": {
"url": "https://github.com/Rolamix/cordova-plugin-playlist/issues"
},
"cordova": {
"id": "cordova-plugin-playlist",
"platforms": [
"android",
"ios"
]
},
"scripts": {
"build": "npm run lint && npx browserslist && tsc --emitDeclarationOnly && babel src/js --out-dir www --extensions \".ts,.tsx\"",
"build:watch": "nodemon -w ./src/js -e js -x npm run build",
"precommit-msg": "echo 'Pre-commit checks... make sure you built!!' && exit 0",
"lint": "eslint src/js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"ecosystem:cordova",
"cordova-ios",
"cordova-android",
"cordova",
"android",
"ios",
"audio",
"player",
"playlist",
"avqueueplayer",
"exomedia",
"native",
"audio",
"background",
"audio",
"lock",
"screen",
"controls"
],
"engines": {
"cordovaDependencies": {
"0.5.0": {
"cordova": ">=7.1.0",
"cordova-android": ">=7.1.0",
"cordova-ios": ">=4.3.0"
}
}
},
"browserslist": "ios_saf >= 9.3, chrome >= 49",
"dependencies": {
"fs-extra": "^5.0.0",
"q": "^1.5.1",
"semver": "^5.5.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.42",
"@babel/core": "^7.0.0-beta.42",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.44",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.44",
"@babel/preset-env": "^7.0.0-beta.42",
"@babel/preset-typescript": "^7.0.0-beta.44",
"@types/semver": "^5.5.0",
"babel-eslint": "^8.2.2",
"babel-plugin-add-header-comment": "^1.0.3",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"jasmine-node": "^1.14.5",
"nodemon": "^1.17.2",
"pluginpub": "^0.0.9",
"typescript": "^2.8.1"
}
}