-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.66 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
{
"name": "infobox-export",
"version": "4.2.0",
"description": "",
"private": true,
"scripts": {
"build": "GIT_COMMIT=`git rev-parse HEAD` webpack --config webpack.prod.js",
"dev": "GIT_COMMIT=`git rev-parse HEAD` webpack --config webpack.dev.js",
"lint": "eslint src -c eslint.config.mjs",
"lint-fix": "eslint src -c eslint.config.mjs --fix",
"test": "mocha --require @babel/register --extensions \".js, .ts, .tsx\" --globals global",
"watch": "webpack --watch --config webpack.dev.js"
},
"pre-commit": [
"lint",
"test",
"build"
],
"sideEffects": false,
"keywords": [],
"author": "See CONTRIBUTORS.md",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@babel/register": "^7.17.7",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.7.0",
"@types/jquery": "^3.5.14",
"@types/lodash": "^4.14.182",
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.51",
"@typescript-eslint/parser": "^8.0.0-alpha.51",
"css-loader": "^7.1.0",
"eslint": "^9.7.0",
"eslint-config-wikimedia": "^0.28.0",
"eslint-plugin-compat": "^6.0.0",
"eslint-plugin-jquery": "^1.5.1",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-promise": "^6.0.0",
"mini-html-webpack-plugin": "^3.1.3",
"mocha": "^10.0.0",
"mock-require": "^3.0.3",
"pre-commit": "^1.2.2",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.8",
"typescript": "^5.3.3",
"webpack": "^5.72.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.0"
}
}