forked from jellyfin-archive/jellyfin-apiclient-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.73 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
{
"name": "jellyfin-apiclient",
"version": "1.6.0",
"description": "API client for Jellyfin",
"main": "dist/jellyfin-apiclient.js",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@types/jest": "^26.0.16",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"babel-loader": "^8.0.5",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-promise": "^4.2.1",
"isomorphic-fetch": "^3.0.0",
"jest": "^26.0.1",
"jest-junit": "^12.0.0",
"jsdoc": "^3.6.4",
"prettier": "2.2.1",
"source-map-loader": "^2.0.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.11",
"typescript": "^4.1.3",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0"
},
"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",
"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": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jellyfin/jellyfin-apiclient-javascript/issues"
},
"homepage": "https://github.com/jellyfin/jellyfin-apiclient-javascript#readme"
}