-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
85 lines (85 loc) · 2.16 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
{
"name": "jclic",
"title": "JClic.js",
"description": "HTML5 player for JClic activities",
"version": "2.1.24",
"main": "dist/jclic-node.js",
"jsdelivr": "dist/jclic.min.js",
"homepage": "https://projectestac.github.io/jclic.js",
"readmeFilename": "README.md",
"author": {
"name": "Catalan Educational Telematic Network (XTEC)",
"email": "[email protected]",
"url": "https://projectes.xtec.cat/clic/"
},
"contributors": [
{
"name": "Francesc Busquets",
"email": "[email protected]",
"url": "https://github.com/frncesc"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/projectestac/jclic.js.git"
},
"keywords": [
"jclic",
"JClic",
"java",
"html5",
"education",
"game",
"games",
"puzzle",
"puzzles",
"activities"
],
"bugs": {
"url": "https://github.com/projectestac/jclic.js/issues"
},
"licenses": [
{
"type": "EUPL-1.2",
"url": "https://spdx.org/licenses/EUPL-1.2.html"
}
],
"license": "EUPL-1.2",
"dependencies": {
"@francesc/basic-midi-player-js": "^3.0.2",
"jquery": "^3.7.1",
"jszip": "^3.10.1",
"jszip-utils": "0.1.0",
"webfontloader": "^1.6.28",
"@xmldom/xmldom": "^0.9.6",
"jsdom": "^25.0.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"babel-loader": "^9.2.1",
"clean-jsdoc-theme": "^4.3.0",
"eslint": "^9.17.0",
"eslint-webpack-plugin": "^4.2.0",
"fs-extra": "^11.2.0",
"jsdoc": "^4.0.4",
"patch-package": "^8.0.0",
"po2json": "^1.0.0-alpha",
"terser-webpack-plugin": "^5.3.11",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0",
"webpack-node-externals": "^3.0.0"
},
"scripts": {
"prebuild": "patch-package",
"build": "webpack --mode production",
"build-locales": "node build-locales.mjs",
"build-doc": "jsdoc -c jsdoc.config.js",
"lint": "eslint -c eslint.config.mjs \"src/**/*.js\"",
"prestart": "patch-package",
"start": "webpack serve --mode development"
},
"browserslist": "> 0.25%, not dead"
}