-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
61 lines (61 loc) · 1.71 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": "jellyfin-apiclient",
"version": "1.11.0",
"description": "API client for Jellyfin",
"main": "dist/jellyfin-apiclient.js",
"dependencies": {},
"devDependencies": {
"@babel/core": "7.18.2",
"@babel/preset-env": "7.18.2",
"babel-jest": "28.1.0",
"babel-loader": "8.2.5",
"eslint": "8.16.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.4.6",
"eslint-plugin-promise": "6.0.0",
"isomorphic-fetch": "3.0.0",
"jest": "28.1.0",
"jest-junit": "13.2.0",
"jsdoc": "3.6.10",
"prettier": "2.6.2",
"source-map-loader": "3.0.1",
"webpack": "5.73.0",
"webpack-cli": "4.9.2"
},
"browserslist": [
"last 2 Firefox versions",
"last 2 Chrome versions",
"last 2 ChromeAndroid versions",
"last 2 Safari versions",
"last 2 iOS versions",
"last 2 Edge versions",
"Chrome 27",
"Chrome 38",
"Chrome 47",
"Chrome 53",
"Chrome 56",
"Chrome 63",
"Firefox ESR"
],
"scripts": {
"prepare": "webpack --mode production",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"lint": "eslint \"src\"",
"test": "jest",
"docs": "jsdoc src -r -R README.md -d docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jellyfin/jellyfin-apiclient-javascript.git"
},
"author": "Jellyfin Contributors (https://github.com/jellyfin/jellyfin-apiclient-javascript/graphs/contributors)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jellyfin/jellyfin-apiclient-javascript/issues"
},
"homepage": "https://github.com/jellyfin/jellyfin-apiclient-javascript#readme",
"engines": {
"yarn": "YARN NO LONGER USED - use npm instead."
}
}