-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
50 lines (50 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
48
49
50
{
"name": "mopidy",
"version": "1.3.0",
"description": "Client lib for controlling a Mopidy music server over a WebSocket",
"keywords": [
"mopidy",
"music",
"client",
"websocket",
"json-rpc"
],
"homepage": "https://mopidy.com/",
"bugs": "https://github.com/mopidy/mopidy.js/issues",
"license": "Apache-2.0",
"main": "src/mopidy.js",
"types": "src/mopidy.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mopidy/mopidy.js"
},
"dependencies": {
"isomorphic-ws": "^5.0.0",
"ws": "^8.13.0"
},
"devDependencies": {
"eslint": "^8.43.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-extended": "^4.0.0",
"jest-runner-eslint": "^2.1.0",
"parcel-bundler": "^1.12.5",
"prettier": "^2.8.8"
},
"engines": {
"node": ">= 18"
},
"files": [
"src/**/*"
],
"scripts": {
"test": "jest",
"format": "prettier --write .",
"build": "parcel build --global Mopidy src/mopidy.js",
"start": "parcel examples/web.html"
}
}