forked from muxinc/media-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "spotify-audio-element",
"version": "0.1.5",
"description": "A custom element for the Spotify player with an API that aims to match the `<audio>` API",
"author": "@muxinc",
"license": "MIT",
"homepage": "https://github.com/muxinc/media-elements#readme",
"bugs": {
"url": "https://github.com/muxinc/media-elements/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muxinc/media-elements.git",
"directory": "packages/spotify-audio-element"
},
"files": [
"dist"
],
"type": "module",
"main": "spotify-audio-element.js",
"exports": {
".": "./spotify-audio-element.js",
"./react": "./dist/react.js"
},
"scripts": {
"lint": "eslint spotify-audio-element.js",
"test": "wet test",
"serve": "wet serve",
"build:react": "build-react-wrapper",
"build": "run-s build:*"
},
"devDependencies": {
"build-react-wrapper": "^0.1.1",
"npm-run-all": "^4.1.5",
"wet-run": "^1.2.2"
},
"keywords": [
"spotify",
"audio",
"player",
"web component",
"custom element"
]
}