-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "phetscraper",
"version": "2.5.0",
"description": "Scraper and exporter of PHET simulations",
"main": "index.js",
"type": "module",
"dependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@openzim/libzim": "^2.4.4",
"@types/cli-progress": "^3.11.0",
"@types/es6-shim": "^0.31.42",
"@types/execa": "^2.0.0",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.10",
"@types/ractive": "^0.7.27",
"@types/yargs": "^16.0.4",
"array-from": "^2.1.1",
"async-sema": "^3.1.1",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"babelify": "^10.0.0",
"banana-i18n": "^2.3.3",
"browserify": "^17.0.0",
"cheerio": "^1.0.0-rc.12",
"cli-progress": "^3.11.2",
"dotenv": "^16.0.3",
"execa": "^6.1.0",
"glob": "^8.0.3",
"got": "^12.5.3",
"handlebars": "^4.7.7",
"hoek": "^6.1.3",
"html-minifier": "^4.0.0",
"imagemin": "^8.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegoptim": "^8.0.0",
"imagemin-pngcrush": "^7.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^10.0.1",
"iso-639-1": "^2.1.15",
"iso-639-3": "^3.0.1",
"jest": "^29.5.0",
"js-yaml": "^4.1.0",
"md5": "^2.3.0",
"ncp": "^2.0.0",
"object-path": "^0.11.8",
"rimraf": "^3.0.2",
"slugify": "^1.6.5",
"snyk": "^1.1066.0",
"sweetalert2": "^11.6.15",
"tiny-async-pool": "^1.3.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"winston": "^3.8.2",
"yargs": "^16.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.0.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1"
},
"scripts": {
"setup": "ts-node-esm -- steps/setup.ts",
"get": "ts-node-esm -- steps/get/index.ts",
"transform": "ts-node-esm -- steps/transform/index.ts",
"export-prebuild": "npm run build && node_modules/browserify/bin/cmd.js res/js/index.js -t babelify -o res/js/dist.js",
"export": "npm run export-prebuild && ts-node-esm -- steps/export/index.ts",
"start": "npm run setup && npm run get && npm run transform && npm run export",
"test": "npm run export-prebuild && node --experimental-vm-modules node_modules/jest/bin/jest.js --verbose --runInBand --forceExit",
"build": "tsc --project tsconfig.build.json",
"lint": "eslint -c .eslintrc.cjs --ext .ts .",
"format": "prettier --write './**/*.ts'"
},
"author": "openZIM team",
"license": "Apache"
}