-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
46 lines (46 loc) · 1.45 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
{
"name": "Vector",
"private": true,
"scripts": {
"test": "npm -s run lint && tsc && npm run test:unit",
"test:unit": "jest --silent",
"test:unit:updateSnapshot": "jest --updateSnapshot",
"lint": "npm -s run lint:js && npm -s run lint:styles && npm -s run lint:i18n",
"lint:fix:js": "npm -s run lint:js -- --fix",
"lint:fix:styles": "npm -s run lint:styles -- --fix",
"lint:js": "eslint --cache .",
"lint:styles": "stylelint \"**/*.{less,css}\"",
"lint:i18n": "banana-checker --requireLowerCase=0 i18n/",
"doc": "echo 'N/A'",
"minify:svg": "svgo --config=.svgo.config.js --quiet --recursive --folder resources/",
"pre-commit": "[ \"${PRE_COMMIT:-1}\" -eq 0 ] || npm -s t"
},
"pre-commit": "pre-commit",
"devDependencies": {
"@types/jest": "27.5.2",
"@types/jquery": "3.5.19",
"@types/mustache": "4.2.2",
"@types/node-fetch": "2.6.5",
"@vue/test-utils": "2.4.1",
"@vue/vue3-jest": "27.0.0",
"@wikimedia/codex": "1.16.0",
"@wikimedia/codex-icons": "1.16.0",
"@wikimedia/mw-node-qunit": "7.2.0",
"@wikimedia/types-wikimedia": "0.4.4",
"eslint-config-wikimedia": "0.28.2",
"grunt-banana-checker": "0.13.0",
"jest": "27.4.7",
"jest-fetch-mock": "3.0.3",
"mustache": "3.0.1",
"mustache-jest": "1.1.1",
"node-fetch": "3.3.2",
"oojs": "7.0.1",
"oojs-ui": "0.48.3",
"pre-commit": "1.2.2",
"stylelint-config-wikimedia": "0.17.2",
"svgo": "3.2.0",
"ts-jest": "27.1.5",
"typescript": "4.9.5",
"vue": "3.4.27"
}
}