forked from Liquipedia/Lua-Modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.36 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.36 KB
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
{
"private": true,
"devDependencies": {
"@csstools/stylelint-formatter-github": "^2.0.0",
"@eslint/eslintrc": "3.x.x",
"@eslint/js": "9.x.x",
"@playwright/test": "^1.58.2",
"@stylistic/stylelint-plugin": "^2.1.2",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"eslint": "9.x.x",
"eslint-config-wikimedia": "0.32.3",
"eslint-plugin-jsdoc": "^62.6.0",
"eslint-plugin-vue": "10.6.x",
"globals": "^17.3.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-junit": "^16.0.0",
"jquery": "*",
"pixelmatch": "^7.1.0",
"playwright": "^1.58.2",
"pngjs": "^7.0.0",
"postcss-scss": "^4.x.x",
"sass": "^1.97.3",
"stylelint": "^17.4.0",
"stylelint-config-wikimedia": "^0.18.0",
"stylelint-scss": "^7.x.x"
},
"jest": {
"reporters": [
"default",
"jest-junit"
]
},
"scripts": {
"lint": "npm run lint:js && npm run lint:scss",
"lint:ci": "npm run lint:js && npm run lint:scss:ci",
"lint:js": "eslint --fix",
"lint:scss": "stylelint \"stylesheets/**/*.scss\"",
"lint:scss:ci": "stylelint \"stylesheets/**/*.scss\" --custom-formatter @csstools/stylelint-formatter-github",
"test:js": "jest",
"compile:scss": "sass stylesheets/Main.scss lua/output/css/main.css",
"build:css": "npm run compile:scss",
"lua-test": "npm run build:css && busted -C lua",
"update-snapshots": "UPDATE_SNAPSHOTS=true npm run lua-test"
}
}